source: main/waeup.kofa/trunk/src/waeup/kofa/students/browser_templates/exportjobsindex.pt @ 9836

Last change on this file since 9836 was 9822, checked in by Henrik Bettermann, 12 years ago

Combine ExportCSVPage and ExportJobContainerOverview? as well as ExportCSVView and ExportJobContainerDownload?. Adjust pagetemplates. Do not remove jobs after download. Display jobs of all users on ExportCSVPage.

One test still fails because we do not have a logger for VirtualExportJobContainers?.

File size: 1.7 KB
Line 
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>&nbsp;</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="structure 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        <a href="" class="btn" i18n:translate=""
31           tal:condition="job/show_refresh_button">
32          <img tal:attributes="src static/actionicon_reload.png" />
33          Reload
34        </a>
35        <a href="" class="btn primary"
36               tal:attributes="href job/download_url"
37               tal:condition="job/show_download_button">
38          Download</a>
39        <form method="POST">
40          <input type="hidden" name="job_id"
41                 tal:attributes="value job/job" />
42          <input type="submit" class="btn secondary"
43                 name="DISCARD" value="Discard"
44                 tal:condition="job/show_discard_button" />
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>
Note: See TracBrowser for help on using the repository browser.