Skip to content

Commit def50ee

Browse files
committed
Add missing 'property' argument to classhelp call.
1 parent edd36ac commit def50ee

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,11 @@
5252

5353
<tr>
5454
<th class="required" i18n:translate="">
55-
<span tal:replace="structure python:db.task_type.classhelp('id,name,description',label='Type')" />:
55+
<span tal:replace="structure python:db.task_type.classhelp('id,name,description',property='type',label='Type')" />:
5656
</th>
5757
<td tal:content="structure context/type/menu">type</td>
5858
<th i18n:translate="">
59-
<span tal:replace="structure python:db.component.classhelp('id,name,description',label='Components')" />:
59+
<span tal:replace="structure python:db.component.classhelp('id,name,description',property='component',label='Components')" />:
6060
</th>
6161
<td tal:content="structure context/components/menu">components</td>
6262
</tr>
@@ -67,7 +67,7 @@
6767
<table class="form">
6868
<tr tal:condition="context/id">
6969
<th i18n:translate="">
70-
<span tal:replace="structure python:db.status.classhelp('id,name,description',label='Status')" />:
70+
<span tal:replace="structure python:db.status.classhelp('id,name,description',property='status',label='Status')" />:
7171
</th>
7272
<td tal:content="structure context/status/menu">status</td>
7373
<th i18n:translate="">Resolution:</th>
@@ -117,7 +117,7 @@
117117
</tr>
118118
<tr>
119119
<th>
120-
<span tal:replace="structure python:db.priority.classhelp('id,name,description',label='Priority')" />:
120+
<span tal:replace="structure python:db.priority.classhelp('id,name,description', property='priority',label='Priority')" />:
121121
</th>
122122
<td tal:content="structure context/priority/menu">priority</td>
123123
</tr>

0 commit comments

Comments
 (0)