annotate roundup/templates/classic/html/msg.index @ 1204:b862bbf2067a

Replaced the content() callback ickiness with Page Template macro usage changed the default CSS style to be less offensive to some ;) better handling of Page Template compilation errors removed dependency on ComputedAttribute
author Richard Jones <richard@users.sourceforge.net>
date Wed, 25 Sep 2002 02:10:25 +0000
parents cf30c6cdca02
children 9e7b2a54f862
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1204
b862bbf2067a Replaced the content() callback ickiness with Page Template macro usage
Richard Jones <richard@users.sourceforge.net>
parents: 1073
diff changeset
1 <tal:block metal:use-macro="templates/page/macros/page">
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>

Roundup Issue Tracker: http://roundup-tracker.org/