Skip to content

Commit c49a0f5

Browse files
committed
Add nosy and priority fields to issue.index.html template
All fields in issue.search.html should now be represented in issue.index.html.
1 parent ec0fb69 commit c49a0f5

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

website/issues/html/issue.index.html

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,13 @@
2929
<th tal:condition="request/show/activity" i18n:translate="">Activity</th>
3030
<th tal:condition="request/show/actor" i18n:translate="">Actor</th>
3131
<th tal:condition="request/show/title" i18n:translate="">Title</th>
32-
<th tal:condition="request/show/components" i18n:translate="">Components</th>
32+
<th tal:condition="request/show/components" i18n:translate="">Components</th>
3333
<th tal:condition="request/show/versions" i18n:translate="">Versions</th>
34-
<th tal:condition="request/show/status" i18n:translate="">Status</th>
34+
<th tal:condition="request/show/status" i18n:translate="">Status</th>
35+
<th tal:condition="request/show/priority" i18n:translate="">Priority</th>
3536
<th tal:condition="request/show/resolution" i18n:translate="">Resolution</th>
3637
<th tal:condition="request/show/creator" i18n:translate="">Creator</th>
38+
<th tal:condition="request/show/nosy" i18n:translate="">Nosy</th>
3739
<th tal:condition="request/show/assignee" i18n:translate="">Assigned&nbsp;To</th>
3840
<th tal:condition="request/show/keywords" i18n:translate="">Keywords</th>
3941
<th tal:condition="request/show/dependencies" i18n:translate="">Depends On</th>
@@ -69,10 +71,14 @@
6971
tal:content="python:i.versions.plain() or default">&nbsp;</td>
7072
<td tal:condition="request/show/status"
7173
tal:content="python:i.status.plain() or default">&nbsp;</td>
74+
<td tal:condition="request/show/priority"
75+
tal:content="python:i.priority.plain() or default">&nbsp;</td>
7276
<td tal:condition="request/show/resolution"
7377
tal:content="python:i.resolution.plain() or default">&nbsp;</td>
7478
<td tal:condition="request/show/creator"
7579
tal:content="python:i.creator.plain() or default">&nbsp;</td>
80+
<td tal:condition="request/show/nosy"
81+
tal:content="python:i.nosy.plain() or default">&nbsp;</td>
7682
<td tal:condition="request/show/assignee"
7783
tal:content="python:i.assignee.plain() or default">&nbsp;</td>
7884
<td tal:condition="request/show/keywords"

0 commit comments

Comments
 (0)