|
23 | 23 | <tal:block tal:define="batch request/batch" tal:condition="context/is_view_ok">
|
24 | 24 | <table class="list">
|
25 | 25 | <tr>
|
26 |
| - <th tal:condition="request/show/severity" i18n:translate="">Severity</th> |
27 | 26 | <th tal:condition="request/show/id" i18n:translate="">ID</th>
|
28 | 27 | <th tal:condition="request/show/creation" i18n:translate="">Creation</th>
|
29 | 28 | <th tal:condition="request/show/activity" i18n:translate="">Activity</th>
|
30 | 29 | <th tal:condition="request/show/actor" i18n:translate="">Actor</th>
|
31 | 30 | <th tal:condition="request/show/title" i18n:translate="">Title</th>
|
32 | 31 | <th tal:condition="request/show/components" i18n:translate="">Components</th>
|
33 |
| - <th tal:condition="request/show/versions" i18n:translate="">Versions</th> |
34 | 32 | <th tal:condition="request/show/status" i18n:translate="">Status</th>
|
35 | 33 | <th tal:condition="request/show/resolution" i18n:translate="">Resolution</th>
|
36 | 34 | <th tal:condition="request/show/creator" i18n:translate="">Creator</th>
|
37 | 35 | <th tal:condition="request/show/assignee" i18n:translate="">Assigned To</th>
|
38 |
| - <th tal:condition="request/show/keywords" i18n:translate="">Keywords</th> |
39 |
| - <th tal:condition="request/show/dependencies" i18n:translate="">Depends On</th> |
| 36 | + <th tal:condition="request/show/solves" i18n:translate="">Solves</th> |
40 | 37 | <th tal:condition="request/show/type" i18n:translate="">Type</th>
|
41 | 38 | </tr>
|
42 | 39 | <tal:block tal:repeat="i batch" condition="true">
|
|
50 | 47 | </tr>
|
51 | 48 |
|
52 | 49 | <tr tal:attributes="class python:['even','odd'][repeat['i'].even()]">
|
53 |
| - <td tal:condition="request/show/severity" |
54 |
| - tal:content="python:i.severity.plain() or default"> </td> |
55 | 50 | <td tal:condition="request/show/id" tal:content="i/id"> </td>
|
56 | 51 | <td class="date" tal:condition="request/show/creation"
|
57 | 52 | tal:content="i/creation/reldate"> </td>
|
|
65 | 60 | </td>
|
66 | 61 | <td tal:condition="request/show/components"
|
67 | 62 | tal:content="python:i.components.plain() or default"> </td>
|
68 |
| - <td tal:condition="request/show/versions" |
69 |
| - tal:content="python:i.versions.plain() or default"> </td> |
70 | 63 | <td tal:condition="request/show/status"
|
71 | 64 | tal:content="python:i.status.plain() or default"> </td>
|
72 | 65 | <td tal:condition="request/show/resolution"
|
|
75 | 68 | tal:content="python:i.creator.plain() or default"> </td>
|
76 | 69 | <td tal:condition="request/show/assignee"
|
77 | 70 | tal:content="python:i.assignee.plain() or default"> </td>
|
78 |
| - <td tal:condition="request/show/keywords" |
79 |
| - tal:content="python:i.keywords.plain() or default"> </td> |
80 |
| - <td tal:condition="request/show/dependencies" |
81 |
| - tal:content="python:i.dependencies.plain() or default"> </td> |
| 71 | + <td tal:condition="request/show/solves" |
| 72 | + tal:content="python:i.solves.plain() or default"> </td> |
82 | 73 | <td tal:condition="request/show/type"
|
83 | 74 | tal:content="python:i.type.plain() or default"> </td>
|
84 | 75 | </tr>
|
|
0 commit comments