Mercurial > p > roundup > code
changeset 4455:2860ff541d0e
Add missing 'property' argument to classhelp call.
| author | Stefan Seefeld <stefan@seefeld.name> |
|---|---|
| date | Thu, 04 Nov 2010 17:52:07 +0000 |
| parents | cc402f5ad93e |
| children | 0c5172cd2f2c |
| files | share/roundup/templates/devel/html/task.item.html |
| diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/share/roundup/templates/devel/html/task.item.html Thu Nov 04 17:50:39 2010 +0000 +++ b/share/roundup/templates/devel/html/task.item.html Thu Nov 04 17:52:07 2010 +0000 @@ -52,11 +52,11 @@ <tr> <th class="required" i18n:translate=""> - <span tal:replace="structure python:db.task_type.classhelp('id,name,description',label='Type')" />: + <span tal:replace="structure python:db.task_type.classhelp('id,name,description',property='type',label='Type')" />: </th> <td tal:content="structure context/type/menu">type</td> <th i18n:translate=""> - <span tal:replace="structure python:db.component.classhelp('id,name,description',label='Components')" />: + <span tal:replace="structure python:db.component.classhelp('id,name,description',property='component',label='Components')" />: </th> <td tal:content="structure context/components/menu">components</td> </tr> @@ -67,7 +67,7 @@ <table class="form"> <tr tal:condition="context/id"> <th i18n:translate=""> - <span tal:replace="structure python:db.status.classhelp('id,name,description',label='Status')" />: + <span tal:replace="structure python:db.status.classhelp('id,name,description',property='status',label='Status')" />: </th> <td tal:content="structure context/status/menu">status</td> <th i18n:translate="">Resolution:</th> @@ -117,7 +117,7 @@ </tr> <tr> <th> - <span tal:replace="structure python:db.priority.classhelp('id,name,description',label='Priority')" />: + <span tal:replace="structure python:db.priority.classhelp('id,name,description', property='priority',label='Priority')" />: </th> <td tal:content="structure context/priority/menu">priority</td> </tr>
