Code

Add missing 'property' argument to classhelp call.
authorstefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Nov 2010 17:52:07 +0000 (17:52 +0000)
committerstefan <stefan@57a73879-2fb5-44c3-a270-3262357dd7e2>
Thu, 4 Nov 2010 17:52:07 +0000 (17:52 +0000)
git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/roundup/trunk@4564 57a73879-2fb5-44c3-a270-3262357dd7e2

share/roundup/templates/devel/html/task.item.html

index 7c51b2d5446cee22a88de1665a4083f78ba9f634..bb2b368c9ca85bb2da0b9b235574a282fbbc59ee 100644 (file)
 
 <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>
 </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>