File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
roundup/templates/classic/html Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 7373- only look for CSV files when importing (thanks Dan Grassi)
7474- can now unset values in CSV editing (sf bug 704788)
7575- finally, tables autosize columns (sf bug 609070)
76+ - added creation to index columns (sf bug 708247)
7677
7778
78792003-??-?? 0.5.7
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ You are not allowed to view this page.
1717 <tr>
1818 <th tal:condition="request/show/priority">Priority</th>
1919 <th tal:condition="request/show/id">ID</th>
20+ <th tal:condition="request/show/creation">Creation</th>
2021 <th tal:condition="request/show/activity">Activity</th>
2122 <th tal:condition="request/show/topic">Topic</th>
2223 <th tal:condition="request/show/title">Title</th>
@@ -34,6 +35,8 @@ You are not allowed to view this page.
3435 <tr tal:attributes="class python:['normal', 'alt'][repeat['i'].index%6/3]">
3536 <td tal:condition="request/show/priority" tal:content="i/priority"></td>
3637 <td tal:condition="request/show/id" tal:content="i/id"></td>
38+ <td nowrap tal:condition="request/show/creation"
39+ tal:content="i/creation/reldate"></td>
3740 <td nowrap tal:condition="request/show/activity"
3841 tal:content="i/activity/reldate"></td>
3942 <td tal:condition="request/show/topic" tal:content="i/topic"></td>
You can’t perform that action at this time.
0 commit comments