Mercurial > p > roundup > code
diff templates/classic/html/issue.index.html @ 3904:91008ec8f9a0
retire "topic" usage
"Topic" still appears in the locale files. I'm sure we need to support
that for existing trackers. I *think* they don't care about any of the other
changes that have been made.
I also left Ka-Ping Yee's original design document unchanged.
This takes care of sf feature request [SF#953161]
| author | Justus Pendleton <jpend@users.sourceforge.net> |
|---|---|
| date | Sun, 16 Sep 2007 02:45:11 +0000 |
| parents | a9f6eb633452 |
| children | 006fcf5b8954 |
line wrap: on
line diff
--- a/templates/classic/html/issue.index.html Fri Sep 14 15:55:25 2007 +0000 +++ b/templates/classic/html/issue.index.html Sun Sep 16 02:45:11 2007 +0000 @@ -1,4 +1,4 @@ -<!-- $Id: issue.index.html,v 1.27 2006-11-09 01:26:28 richard Exp $ --> +<!-- $Id: issue.index.html,v 1.28 2007-09-16 02:45:11 jpend Exp $ --> <tal:block metal:use-macro="templates/page/macros/icing"> <title metal:fill-slot="head_title" > <span tal:omit-tag="true" i18n:translate="" >List of issues</span> @@ -29,7 +29,7 @@ <th tal:condition="request/show/creation" i18n:translate="">Creation</th> <th tal:condition="request/show/activity" i18n:translate="">Activity</th> <th tal:condition="request/show/actor" i18n:translate="">Actor</th> - <th tal:condition="request/show/topic" i18n:translate="">Topic</th> + <th tal:condition="request/show/keyword" i18n:translate="">Keyword</th> <th tal:condition="request/show/title" i18n:translate="">Title</th> <th tal:condition="request/show/status" i18n:translate="">Status</th> <th tal:condition="request/show/creator" i18n:translate="">Creator</th> @@ -55,8 +55,8 @@ tal:content="i/activity/reldate"> </td> <td class="date" tal:condition="request/show/actor" tal:content="python:i.actor.plain() or default"> </td> - <td tal:condition="request/show/topic" - tal:content="python:i.topic.plain() or default"> </td> + <td tal:condition="request/show/keyword" + tal:content="python:i.keyword.plain() or default"> </td> <td tal:condition="request/show/title"> <a tal:attributes="href string:issue${i/id}" tal:content="python:str(i.title.plain(hyperlink=0)) or '[no title]'">title</a>
