Mercurial > p > roundup > code
annotate templates/classic/html/issue.item.html @ 2365:3a80831ecebe
If the target platform is win32, create .bat files...
...instead of *nix shell scripts.
Target platform is set to "win32" if main command is 'bdist_wininst'
or if the command is 'bdist' and it has the list of formats (from
command line or config file) and the first item on that list is wininst.
Otherwise target platform is set to current (build) platform.
| author | Alexander Smishlajev <a1s@users.sourceforge.net> |
|---|---|
| date | Wed, 26 May 2004 10:00:53 +0000 |
| parents | 975500ced7fa |
| children | c2908812624a |
| rev | line source |
|---|---|
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
1 <!-- dollarId: issue.item,v 1.4 2001/08/03 01:19:43 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"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
3 <title metal:fill-slot="head_title"> |
|
2187
3b92a1b7a056
tracker name at end of page title (rfe [SF#926840])
Richard Jones <richard@users.sourceforge.net>
parents:
2180
diff
changeset
|
4 <tal:x condition="context/id" |
|
3b92a1b7a056
tracker name at end of page title (rfe [SF#926840])
Richard Jones <richard@users.sourceforge.net>
parents:
2180
diff
changeset
|
5 replace="string:Issue ${context/id}: ${context/title}" /> |
|
3b92a1b7a056
tracker name at end of page title (rfe [SF#926840])
Richard Jones <richard@users.sourceforge.net>
parents:
2180
diff
changeset
|
6 <tal:x condition="not:context/id">New Issue</tal:x> |
|
3b92a1b7a056
tracker name at end of page title (rfe [SF#926840])
Richard Jones <richard@users.sourceforge.net>
parents:
2180
diff
changeset
|
7 - <tal:x replace="config/TRACKER_NAME" /> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
8 </title> |
|
1976
3a4abf6d48c2
body_title improvement
Richard Jones <richard@users.sourceforge.net>
parents:
1911
diff
changeset
|
9 <span metal:fill-slot="body_title" tal:omit-tag="python:1"> |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
10 <tal:x tal:condition="not:context/id">New</tal:x> |
|
2187
3b92a1b7a056
tracker name at end of page title (rfe [SF#926840])
Richard Jones <richard@users.sourceforge.net>
parents:
2180
diff
changeset
|
11 Issue<tal:x replace="context/id" /> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
12 <tal:x tal:condition="context/is_edit_ok">Editing</tal:x> |
|
1976
3a4abf6d48c2
body_title improvement
Richard Jones <richard@users.sourceforge.net>
parents:
1911
diff
changeset
|
13 </span> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
14 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
15 <td class="content" metal:fill-slot="content"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
16 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
17 <form method="POST" name="itemSynopsis" onSubmit="return submit_once()" |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
18 enctype="multipart/form-data" tal:attributes="action context/designator"> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
19 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
20 <table class="form"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
21 <tr> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
22 <th class="required">Title</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
23 <td colspan=3 tal:content="structure python:context.title.field(size=60)">title</td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
24 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
25 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
26 <tr> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
27 <th class="required">Priority</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
28 <td tal:content="structure context/priority/menu">priority</td> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
29 <th>Status</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
30 <td tal:content="structure context/status/menu">status</td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
31 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
32 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
33 <tr> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
34 <th>Superseder</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
35 <td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
36 <span tal:replace="structure python:context.superseder.field(showid=1, size=20)" /> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
37 <span tal:replace="structure python:db.issue.classhelp('id,title', property='superseder')" /> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
38 <span tal:condition="context/superseder" tal:repeat="sup context/superseder"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
39 <br>View: <a tal:attributes="href string:issue${sup/id}" |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
40 tal:content="sup/id"></a> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
41 </span> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
42 </td> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
43 <th>Nosy List</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
44 <td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
45 <span tal:replace="structure context/nosy/field" /> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
46 <span tal:replace="structure |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
47 python:db.user.classhelp('username,realname,address', property='nosy', width='600')" /><br> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
48 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
49 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
50 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
51 <tr> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
52 <th>Assigned To</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
53 <td tal:content="structure context/assignedto/menu">assignedto menu</td> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
54 <th>Topics</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
55 <td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
56 <span tal:replace="structure context/topic/field" /> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
57 <span tal:replace="structure python:db.keyword.classhelp(property='topic')" /> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
58 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
59 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
60 |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
61 <tr tal:condition="context/is_edit_ok"> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
62 <th>Change Note</th> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
63 <td colspan=3> |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1829
diff
changeset
|
64 <textarea tal:content="request/form/@note/value | default" |
|
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1829
diff
changeset
|
65 name="@note" wrap="hard" rows="5" cols="80"></textarea> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
66 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
67 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
68 |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
69 <tr tal:condition="context/is_edit_ok"> |
|
1825
fad32dafc174
Replaced all uses of the 'nowrap' attribute with its CSS equivalent:
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1773
diff
changeset
|
70 <th>File</th> |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1829
diff
changeset
|
71 <td colspan=3><input type="file" name="@file" size="40"></td> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
72 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
73 |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
74 <tr tal:condition="context/is_edit_ok"> |
|
1829
4e4afbe3cd30
Move '<input type="hidden">' elements into a block.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1825
diff
changeset
|
75 <td> |
|
4e4afbe3cd30
Move '<input type="hidden">' elements into a block.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1825
diff
changeset
|
76 |
|
1911
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1829
diff
changeset
|
77 <input type="hidden" name="@template" value="item"> |
|
f5c804379c85
fixed ZRoundup - mostly changes to classic template
Richard Jones <richard@users.sourceforge.net>
parents:
1829
diff
changeset
|
78 <input type="hidden" name="@required" value="title,priority"> |
|
1829
4e4afbe3cd30
Move '<input type="hidden">' elements into a block.
Johannes Gijsbers <jlgijsbers@users.sourceforge.net>
parents:
1825
diff
changeset
|
79 </td> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
80 <td colspan=3 tal:content="structure context/submit"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
81 submit button will go here |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
82 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
83 </tr> |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
84 |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
85 </table> |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
86 |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
87 </form> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
88 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
89 <table class="form" tal:condition="not:context/id"> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
90 <tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
91 <td>Note: </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
92 <th class="required">highlighted</th> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
93 <td> fields are required.</td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
94 </tr> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
95 </table> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
96 |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
97 <p tal:condition="context/id" tal:content="structure string:Created on |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
98 <b>${context/creation}</b> by <b>${context/creator}</b>, last |
|
2077
3e0961d6d44d
Added the "actor" property.
Richard Jones <richard@users.sourceforge.net>
parents:
1985
diff
changeset
|
99 changed <b>${context/activity}</b> by <b>${context/actor}</b>.">activity info |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
100 </p> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
101 |
|
1985
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
102 <table class="files" tal:condition="context/files"> |
|
2236
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
103 <tr><th colspan="5" class="header">Files</th></tr> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
104 <tr><th>File name</th><th>Uploaded</th><th>Type</th><th>Edit</th> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
105 <th>Remove</th></tr> |
|
1985
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
106 <tr tal:repeat="file context/files"> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
107 <td> |
|
2180
58b6d1747973
Web interface tweaks.
Richard Jones <richard@users.sourceforge.net>
parents:
2077
diff
changeset
|
108 <a tal:attributes="href file/download_url" |
|
1985
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
109 tal:content="file/name">dld link</a> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
110 </td> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
111 <td> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
112 <span tal:content="file/creator">creator's name</span>, |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
113 <span tal:content="file/creation">creation date</span> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
114 </td> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
115 <td tal:content="file/type" /> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
116 <td><a tal:condition="file/is_edit_ok" |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
117 tal:attributes="href string:file${file/id}">edit</a> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
118 </td> |
|
2236
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
119 <td> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
120 <form style="padding:0" tal:condition="context/is_edit_ok" |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
121 tal:attributes="action string:issue${context/id}"> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
122 <input type="hidden" name="@remove@files" tal:attributes="value file/id"> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
123 <input type="hidden" name="@action" value="edit"> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
124 <input type="submit" value="remove"> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
125 </form> |
|
975500ced7fa
add "remove" button to file attachments
Richard Jones <richard@users.sourceforge.net>
parents:
2187
diff
changeset
|
126 </td> |
|
1985
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
127 </tr> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
128 </table> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
129 |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
130 <table class="messages" tal:condition="context/messages"> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
131 <tr><th colspan="4" class="header">Messages</th></tr> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
132 <tal:block tal:repeat="msg context/messages/reverse"> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
133 <tr> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
134 <th><a tal:attributes="href string:msg${msg/id}" |
|
1985
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
135 tal:content="string:msg${msg/id} (view)"></a></th> |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
136 <th tal:content="string:Author: ${msg/author}">author</th> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
137 <th tal:content="string:Date: ${msg/date}">date</th> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
138 <th> |
|
1985
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
139 <form style="padding:0" tal:condition="context/is_edit_ok" |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
140 tal:attributes="action string:issue${context/id}"> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
141 <input type="hidden" name="@remove@messages" tal:attributes="value msg/id"> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
142 <input type="hidden" name="@action" value="edit"> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
143 <input type="submit" value="remove"> |
|
95623e250b01
more useful file listing
Richard Jones <richard@users.sourceforge.net>
parents:
1978
diff
changeset
|
144 </form> |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
145 </th> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
146 </tr> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
147 <tr> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
148 <td colspan="4" class="content"> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
149 <pre tal:content="structure msg/content/hyperlinked">content</pre> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
150 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
151 </tr> |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
152 </tal:block> |
|
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
153 </table> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
154 |
|
1978
eb043e7d0899
changed template to remove duplicate display table...
Richard Jones <richard@users.sourceforge.net>
parents:
1976
diff
changeset
|
155 <tal:block tal:condition="context/id" tal:replace="structure context/history" /> |
|
1591
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
156 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
157 </td> |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
158 |
|
21312a7564fd
moving templates around
Richard Jones <richard@users.sourceforge.net>
parents:
diff
changeset
|
159 </tal:block> |
