Mercurial > p > roundup > code
diff roundup/templates/classic/html/issue.index @ 1545:838997c8c94e
added creation to index columns [SF#708247]
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Sun, 23 Mar 2003 09:37:11 +0000 |
| parents | a2a57ec8fdf0 |
| children | 87cd46dadf1a |
line wrap: on
line diff
--- a/roundup/templates/classic/html/issue.index Sun Mar 23 06:07:05 2003 +0000 +++ b/roundup/templates/classic/html/issue.index Sun Mar 23 09:37:11 2003 +0000 @@ -17,6 +17,7 @@ <tr> <th tal:condition="request/show/priority">Priority</th> <th tal:condition="request/show/id">ID</th> + <th tal:condition="request/show/creation">Creation</th> <th tal:condition="request/show/activity">Activity</th> <th tal:condition="request/show/topic">Topic</th> <th tal:condition="request/show/title">Title</th> @@ -34,6 +35,8 @@ <tr tal:attributes="class python:['normal', 'alt'][repeat['i'].index%6/3]"> <td tal:condition="request/show/priority" tal:content="i/priority"></td> <td tal:condition="request/show/id" tal:content="i/id"></td> + <td nowrap tal:condition="request/show/creation" + tal:content="i/creation/reldate"></td> <td nowrap tal:condition="request/show/activity" tal:content="i/activity/reldate"></td> <td tal:condition="request/show/topic" tal:content="i/topic"></td>
