1 | <table i18n:domain="waeup.kofa"> |
---|
2 | <thead> |
---|
3 | <tr> |
---|
4 | <th i18n:translate="">Export Number</th> |
---|
5 | <th i18n:translate="">Description</th> |
---|
6 | <th i18n:translate="">Creator</th> |
---|
7 | <th i18n:translate="">Creation Date</th> |
---|
8 | <th i18n:translate="">Status</th> |
---|
9 | <th> </th> |
---|
10 | </tr> |
---|
11 | </thead> |
---|
12 | <tbody> |
---|
13 | <tr tal:repeat="job view/entries"> |
---|
14 | <td> |
---|
15 | <span tal:replace="job/job">12</span> |
---|
16 | </td> |
---|
17 | <td> |
---|
18 | <span tal:replace="job/descr">DESCRIPTION</span> |
---|
19 | </td> |
---|
20 | <td> |
---|
21 | <span tal:replace="job/creator">CREATOR</span> |
---|
22 | </td> |
---|
23 | <td nowrap> |
---|
24 | <span tal:replace="job/start_time">DATETIME</span> |
---|
25 | </td> |
---|
26 | <td> |
---|
27 | <span tal:replace="job/status">STATUS</span> |
---|
28 | </td> |
---|
29 | <td nowrap> |
---|
30 | <form method="POST"> |
---|
31 | <input type="hidden" name="job_id" |
---|
32 | tal:attributes="value job/job" /> |
---|
33 | <a href="" class="btn primary" |
---|
34 | tal:attributes="href job/download_url" |
---|
35 | tal:condition="job/show_download_button"> |
---|
36 | Download</a> |
---|
37 | <input type="submit" class="btn secondary" |
---|
38 | name="DISCARD" value="Discard" |
---|
39 | tal:condition="job/show_discard_button" /> |
---|
40 | <a href="" class="btn" i18n:translate="" |
---|
41 | tal:condition="job/show_refresh_button"> |
---|
42 | <img tal:attributes="src static/actionicon_reload.png" /> |
---|
43 | Reload |
---|
44 | </a> |
---|
45 | </form> |
---|
46 | </td> |
---|
47 | </tr> |
---|
48 | </tbody> |
---|
49 | </table> |
---|
50 | <form method="POST" i18n:domain="waeup.kofa"> |
---|
51 | <div class="span12"> |
---|
52 | |
---|
53 | </div> |
---|
54 | <input class="btn primary" type="submit" name="CREATE" |
---|
55 | value="Configure new export" |
---|
56 | /> |
---|
57 | </form> |
---|