Code

added creation to index columns (sf bug 708247)
authorrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 23 Mar 2003 09:37:11 +0000 (09:37 +0000)
committerrichard <richard@57a73879-2fb5-44c3-a270-3262357dd7e2>
Sun, 23 Mar 2003 09:37:11 +0000 (09:37 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@1617 57a73879-2fb5-44c3-a270-3262357dd7e2

CHANGES.txt
roundup/templates/classic/html/issue.index

index 3efa6645c324a6df924781de691a3b618f446fd5..18d7616cc4f73a8aa636db1bcaaa6a7e4059a994 100644 (file)
@@ -73,6 +73,7 @@ Fixed:
 - only look for CSV files when importing (thanks Dan Grassi)
 - can now unset values in CSV editing (sf bug 704788)
 - finally, tables autosize columns (sf bug 609070)
+- added creation to index columns (sf bug 708247)
 
 
 2003-??-?? 0.5.7
index 9fcf2a7fe0149923447ca29de59f268443786c68..6c2ced4cbd773cefadc885a5c845213c5262cbc9 100644 (file)
@@ -17,6 +17,7 @@ You are not allowed to view this page.
   <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 @@ You are not allowed to view this page.
   <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>