Mercurial > p > roundup > code
annotate templates/classic/html/issue.index.html @ 3117:460eb0209a9e
Permissions improvements.
- have Permissions only test the check function if itemid is suppled
- modify index templates to check for row-level Permission
- more documentation of security mechanisms
- better unit tests for security mechanisms
| author | Richard Jones <richard@users.sourceforge.net> |
|---|---|
| date | Fri, 28 Jan 2005 03:51:19 +0000 |
| parents | 84a969033ed9 |
| children | a2889d22db4a 708ce3b664d4 |
| rev | line source |
|---|---|
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
1 <!-- dollarId: issue.index,v 1.2 2001/07/29 04:07:37 richard Exp dollar--> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
2 <tal:block metal:use-macro="templates/page/macros/icing"> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
3 <title metal:fill-slot="head_title" i18n:translate="" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
4 >List of issues - <span tal:replace="config/TRACKER_NAME" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
5 i18n:name="tracker" /></title> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
6 <span metal:fill-slot="body_title" tal:omit-tag="python:1" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
7 i18n:translate="">List of issues</span> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
8 <td class="content" metal:fill-slot="content"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
9 |
|
3117
460eb0209a9e
Permissions improvements.
Richard Jones <richard@users.sourceforge.net>
parents:
2519
diff
changeset
|
10 <p tal:condition="not:context/is_view_ok" i18n:translate="">You are not |
|
460eb0209a9e
Permissions improvements.
Richard Jones <richard@users.sourceforge.net>
parents:
2519
diff
changeset
|
11 allowed to view this page.</p> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
12 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
13 <tal:block tal:define="batch request/batch" tal:condition="context/is_view_ok"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
14 <table class="list"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
15 <tr> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
16 <th tal:condition="request/show/priority" i18n:translate="">Priority</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
17 <th tal:condition="request/show/id" i18n:translate="">ID</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
18 <th tal:condition="request/show/creation" i18n:translate="">Creation</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
19 <th tal:condition="request/show/activity" i18n:translate="">Activity</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
20 <th tal:condition="request/show/actor" i18n:translate="">Actor</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
21 <th tal:condition="request/show/topic" i18n:translate="">Topic</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
22 <th tal:condition="request/show/title" i18n:translate="">Title</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
23 <th tal:condition="request/show/status" i18n:translate="">Status</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
24 <th tal:condition="request/show/creator" i18n:translate="">Creator</th> |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
25 <th tal:condition="request/show/assignedto" i18n:translate="">Assigned To</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
26 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
27 <tal:block tal:repeat="i batch"> |
|
2075
b1704ba7be41
make mysql / postgresql work again. beginnings of otk/session store in rdbmses
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
28 <tr tal:define="group python:request.group[1]" |
|
b1704ba7be41
make mysql / postgresql work again. beginnings of otk/session store in rdbmses
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
29 tal:condition="python:group and batch.propchanged(group)"> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
30 <th tal:attributes="colspan python:len(request.columns)" |
|
2075
b1704ba7be41
make mysql / postgresql work again. beginnings of otk/session store in rdbmses
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
31 tal:content="python:str(i[group]) or '(no %s set)'%group" class="group"> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
32 </th> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
33 </tr> |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
34 |
|
3117
460eb0209a9e
Permissions improvements.
Richard Jones <richard@users.sourceforge.net>
parents:
2519
diff
changeset
|
35 <tr tal:condition="i/is_view_ok"> |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
36 <td tal:condition="request/show/priority" |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
37 tal:content="python:i.priority.plain() or default"> </td> |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
38 <td tal:condition="request/show/id" tal:content="i/id"> </td> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1824
diff
changeset
|
39 <td class="date" tal:condition="request/show/creation" |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
40 tal:content="i/creation/reldate"> </td> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1824
diff
changeset
|
41 <td class="date" tal:condition="request/show/activity" |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
42 tal:content="i/activity/reldate"> </td> |
|
2077
3e0961d6d44d
Added the "actor" property.
Richard Jones <richard@users.sourceforge.net>
parents:
2075
diff
changeset
|
43 <td class="date" tal:condition="request/show/actor" |
|
3e0961d6d44d
Added the "actor" property.
Richard Jones <richard@users.sourceforge.net>
parents:
2075
diff
changeset
|
44 tal:content="python:i.actor.plain() or default"> </td> |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
45 <td tal:condition="request/show/topic" |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
46 tal:content="python:i.topic.plain() or default"> </td> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
47 <td tal:condition="request/show/title"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
48 <a tal:attributes="href string:issue${i/id}" |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
49 tal:content="python:str(i.title.plain(hyperlink=0)) or '[no title]'">title</a> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
50 </td> |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
51 <td tal:condition="request/show/status" |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
52 tal:content="python:i.status.plain() or default"> </td> |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
53 <td tal:condition="request/show/creator" |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
54 tal:content="python:i.creator.plain() or default"> </td> |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
55 <td tal:condition="request/show/assignedto" |
|
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
56 tal:content="python:i.assignedto.plain() or default"> </td> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
57 </tr> |
|
1625
126d4d0ac89b
under the heading of "questionable whether it's a fix or not"
Richard Jones <richard@users.sourceforge.net>
parents:
1591
diff
changeset
|
58 |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
59 </tal:block> |
|
1635
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
60 |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
61 <tr tal:condition="batch"> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
62 <th tal:attributes="colspan python:len(request.columns)"> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
63 <table width="100%"> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
64 <tr class="navigation"> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
65 <th> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
66 <a tal:define="prev batch/previous" tal:condition="prev" |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
67 tal:attributes="href python:request.indexargs_href(request.classname, |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
68 {'@startwith':prev.first, '@pagesize':prev.size})" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
69 i18n:translate=""><< previous</a> |
|
1635
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
70 |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
71 </th> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
72 <th i18n:translate=""><span tal:replace="batch/start" i18n:name="start" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
73 />..<span tal:replace="python: batch.start + batch.length -1" i18n:name="end" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
74 /> out of <span tal:replace="batch/sequence_length" i18n:name="total" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
75 /></th> |
|
1635
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
76 <th> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
77 <a tal:define="next batch/next" tal:condition="next" |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
78 tal:attributes="href python:request.indexargs_href(request.classname, |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
79 {'@startwith':next.first, '@pagesize':next.size})" |
|
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
80 i18n:translate="">next >></a> |
|
1635
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
81 |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
82 </th> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
83 </tr> |
|
b0ffb474716e
nicer index navigation
Richard Jones <richard@users.sourceforge.net>
parents:
1625
diff
changeset
|
84 </table> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
85 </th> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
86 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
87 </table> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
88 |
|
2112
b86f0627b07c
added CSV download of index / search results
Richard Jones <richard@users.sourceforge.net>
parents:
2077
diff
changeset
|
89 <a tal:attributes="href python:request.indexargs_url('issue', |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
90 {'@action':'export_csv'})" i18n:translate="">Download as CSV</a> |
|
2112
b86f0627b07c
added CSV download of index / search results
Richard Jones <richard@users.sourceforge.net>
parents:
2077
diff
changeset
|
91 |
|
2242
daf5bd3666bd
hide bottom form too
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
92 <form method="GET" class="index-controls" |
|
daf5bd3666bd
hide bottom form too
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
93 tal:attributes="action request/classname"> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
94 |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
95 <table class="form"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
96 <tr tal:condition="batch"> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
97 <th i18n:translate="">Sort on:</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
98 <td> |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1825
diff
changeset
|
99 <select name="@sort"> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
100 <option value="" i18n:translate="">- nothing -</option> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
101 <option tal:repeat="col context/properties" |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
102 tal:attributes="value col/_name; |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
103 selected python:col._name == request.sort[1]" |
|
2519
84a969033ed9
translate column names in "sort by" and "group by" option lists
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2461
diff
changeset
|
104 tal:content="col/_name" |
|
84a969033ed9
translate column names in "sort by" and "group by" option lists
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2461
diff
changeset
|
105 i18n:translate="">column</option> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
106 </select> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
107 </td> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
108 <th i18n:translate="">Descending:</th> |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1825
diff
changeset
|
109 <td><input type="checkbox" name="@sortdir" |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
110 tal:attributes="checked python:request.sort[0] == '-'"> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
111 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
112 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
113 <tr> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
114 <th i18n:translate="">Group on:</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
115 <td> |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1825
diff
changeset
|
116 <select name="@group"> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
117 <option value="" i18n:translate="">- nothing -</option> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
118 <option tal:repeat="col context/properties" |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
119 tal:attributes="value col/_name; |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
120 selected python:col._name == request.group[1]" |
|
2519
84a969033ed9
translate column names in "sort by" and "group by" option lists
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2461
diff
changeset
|
121 tal:content="col/_name" |
|
84a969033ed9
translate column names in "sort by" and "group by" option lists
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2461
diff
changeset
|
122 i18n:translate="">column</option> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
123 </select> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
124 </td> |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
125 <th i18n:translate="">Descending:</th> |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1825
diff
changeset
|
126 <td><input type="checkbox" name="@groupdir" |
|
2393
c2908812624a
i18n markup
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2242
diff
changeset
|
127 tal:attributes="checked python:request.group[0] == '-'"> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
128 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
129 </tr> |
|
1824
24819ee5dfbc
First steps towards HTML4.01 Strict validation.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1635
diff
changeset
|
130 <tr><td colspan="4"> |
|
2461
48143bde35df
translate 'Redisplay' button caption
Alexander Smishlajev <a1s@users.sourceforge.net>
parents:
2393
diff
changeset
|
131 <input type="submit" value="Redisplay" i18n:attributes="value"> |
|
1824
24819ee5dfbc
First steps towards HTML4.01 Strict validation.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1635
diff
changeset
|
132 <tal:block tal:replace="structure |
|
24819ee5dfbc
First steps towards HTML4.01 Strict validation.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1635
diff
changeset
|
133 python:request.indexargs_form(sort=0, group=0)" /> |
|
24819ee5dfbc
First steps towards HTML4.01 Strict validation.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1635
diff
changeset
|
134 </td></tr> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
135 </table> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
136 </form> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
137 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
138 </tal:block> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
139 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
140 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
141 </tal:block> |
