1 | <table i18n:domain="waeup.kofa" class="table table-condensed table-hover"> |
---|
2 | <thead> |
---|
3 | <tr> |
---|
4 | <th i18n:translate="">Export Number</th> |
---|
5 | <th i18n:translate="">Exporter</th> |
---|
6 | <th i18n:translate="">Filter</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="job view/entries"> |
---|
15 | <td> |
---|
16 | <span tal:replace="job/job">12</span> |
---|
17 | </td> |
---|
18 | <td> |
---|
19 | <span tal:replace="structure job/exporter">EXPORTER</span> |
---|
20 | </td> |
---|
21 | <td> |
---|
22 | <span tal:replace="structure job/args">ARGS</span> |
---|
23 | </td> |
---|
24 | <td> |
---|
25 | <span tal:replace="job/creator">CREATOR</span> |
---|
26 | </td> |
---|
27 | <td> |
---|
28 | <span tal:replace="job/start_time">DATETIME</span> |
---|
29 | </td> |
---|
30 | <td> |
---|
31 | <span tal:replace="job/status">STATUS</span> |
---|
32 | </td> |
---|
33 | <td nowrap> |
---|
34 | <a href="" class="btn btn-default btn-xs" i18n:translate="" |
---|
35 | tal:condition="job/show_refresh_button"> |
---|
36 | <img src="/static/img/actionicon_reload.png" /> |
---|
37 | Reload |
---|
38 | </a> |
---|
39 | <form method="POST"> |
---|
40 | <a href="" class="btn btn-primary btn-xs" |
---|
41 | tal:attributes="href job/download_url" |
---|
42 | tal:condition="job/show_download_button"> |
---|
43 | Download</a> |
---|
44 | <input type="hidden" name="job_id" |
---|
45 | tal:attributes="value job/job" /> |
---|
46 | <input type="submit" class="btn btn-default btn-xs" |
---|
47 | name="DISCARD" value="Discard" |
---|
48 | tal:condition="job/show_discard_button" /> |
---|
49 | </form> |
---|
50 | </td> |
---|
51 | </tr> |
---|
52 | </tbody> |
---|
53 | </table> |
---|
54 | |
---|
55 | <form method="POST" i18n:domain="waeup.kofa"> |
---|
56 | <input class="btn btn-primary" type="submit" name="CREATE" |
---|
57 | value="Start new exports" |
---|
58 | /> |
---|
59 | </form> |
---|