Mercurial > p > roundup > code
annotate roundup/templates/classic/html/msg.index @ 1244:8dd4f736370b
merge from maintenance branch
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Thu, 03 Oct 2002 06:56:30 +0000 |
| parents | 9e7b2a54f862 |
| children | a2a57ec8fdf0 |
| rev | line source |
|---|---|
|
1216
9e7b2a54f862
*** empty log message ***
Richard Jones <richard@users.sourceforge.net>
parents:
1204
diff
changeset
|
1 <tal:block metal:use-macro="templates/page/macros/icing"> |
|
1204
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
2 <title metal:fill-slot="head_title">Message listing</title> |
|
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
3 <td class="page-header-top" metal:fill-slot="body_title"> |
|
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
4 <h2>Message listing</h2> |
|
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
5 </td> |
|
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
6 <td class="content" metal:fill-slot="content"> |
|
1042
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
7 <table class="messages" tal:condition="request/filter"> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
8 <tr><th colspan=2 class="header">Messages</th></tr> |
|
1073
cf30c6cdca02
More documentation.
Richard Jones <richard@users.sourceforge.net>
parents:
1043
diff
changeset
|
9 <tal:block tal:repeat="msg context/list"> |
|
1042
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
10 <tr> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
11 <th tal:content="string:Author: ${msg/author}">author</th> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
12 <th tal:content="string:Date: ${msg/date}">date</th> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
13 </tr> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
14 <tr> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
15 <td colspan="2"><pre tal:content="msg/content">content</pre></td> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
16 </tr> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
17 </tal:block> |
|
adcfdeac4e76
not sure how useful this is...
Richard Jones <richard@users.sourceforge.net>
parents:
987
diff
changeset
|
18 </table> |
|
1204
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
19 </td> |
|
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
20 |
|
b862bbf2067a
Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents:
1073
diff
changeset
|
21 </tal:block> |
