File: compose_postponed.t

package info (click to toggle)
prayer 1.3.4-dfsg1-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,416 kB
  • sloc: ansic: 43,089; makefile: 812; sh: 451; perl: 166
file content (38 lines) | stat: -rw-r--r-- 963 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%# $Cambridge: hermes/src/prayer/templates/cam/compose_postponed.t,v 1.2 2008/09/17 16:12:06 dpc22 Exp $
%#
% CALL header
% CALL toolbar
% CALL container_start
% CALL status
<h2 style="text-align: center">List of Postponed messages</h2>
<table class="data">
<tr>
 <td>Msgno</td>
 <td>Date</td>
 <td>First To/Cc/Bcc</td>
 <td align="right">Size</td>
 <td>Subject</td>
</tr>
% FOREACH $m @list
<tr><td><% $m->msgno |h %>.</td>
<td><% $m->date |h %></td>
<td><% $m->name |h %></td>
<td align="right"><% $m->size |h %></td>
<td>
 <a href="<% compose?postponed=${m->msgno} |s %>"><% $m->subject |h%></a>
</td>
</tr>
% ENDFOREACH
</table>
<hr />
<form method="get" accept-charset="UTF-8" action="<% compose |s %>">
<div>
<input type="submit" name="postponed_cancel" value="Cancel" />
<input type="submit" name="postponed_fresh" value="Compose a fresh message" />
</div>
</form>
% IFDEF $g_help
%   CALL compose_postponed_help
% ENDIF
% CALL container_end
% CALL footer