Last change
on this file since 9658 was
9658,
checked in by Henrik Bettermann, 12 years ago
|
Replace reload button by a discreet icon.
|
File size:
1.7 KB
|
Line | |
---|
1 | <form method="POST" i18n:domain="waeup.kofa"> |
---|
2 | <table> |
---|
3 | <thead> |
---|
4 | <tr> |
---|
5 | <th i18n:translate="">Report Number</th> |
---|
6 | <th i18n:translate="">Description</th> |
---|
7 | <th i18n:translate="">Creator</th> |
---|
8 | <th i18n:translate="">Creation Date</th> |
---|
9 | <th i18n:translate="">Status</th> |
---|
10 | <th> </th> |
---|
11 | </tr> |
---|
12 | </thead> |
---|
13 | <tbody> |
---|
14 | <tr tal:repeat="entry view/entries"> |
---|
15 | <td> |
---|
16 | <span tal:replace="python: entry[0]">12</span> |
---|
17 | </td> |
---|
18 | <td> |
---|
19 | <span tal:replace="python: entry[1]">REPORT DESCRIPTION</span> |
---|
20 | </td> |
---|
21 | <td> |
---|
22 | <span tal:replace="python: entry[7]">CREATOR</span> |
---|
23 | </td> |
---|
24 | <td nowrap> |
---|
25 | <span tal:replace="python: entry[6]">DATETIME</span> |
---|
26 | </td> |
---|
27 | <td> |
---|
28 | <span tal:replace="python: entry[2]">STATUS</span> |
---|
29 | </td> |
---|
30 | <td nowrap> |
---|
31 | <form method="POST"> |
---|
32 | <input type="hidden" name="job_id" |
---|
33 | tal:attributes="value python: entry[0]" /> |
---|
34 | <input type="submit" class="btn primary" |
---|
35 | name="DOWNLOAD" value="Download" |
---|
36 | tal:condition="python: entry[4]" /> |
---|
37 | <input type="submit" class="btn secondary" |
---|
38 | name="DISCARD" value="Discard" |
---|
39 | tal:condition="python: entry[3]" /> |
---|
40 | <a href="" |
---|
41 | tal:condition="python: entry[5]"> |
---|
42 | <img tal:attributes="src static/actionicon_reload.png" /> |
---|
43 | </a> |
---|
44 | </form> |
---|
45 | </td> |
---|
46 | </tr> |
---|
47 | </tbody> |
---|
48 | </table> |
---|
49 | <div class="span12"> |
---|
50 | <a href="create" class="btn primary">Create new report</a> |
---|
51 | </div> |
---|
52 | </form> |
---|
Note: See
TracBrowser for help on using the repository browser.