source: main/waeup.sirp/trunk/src/waeup/sirp/accesscodes/browser_templates/reimportbatchpage.pt @ 7637

Last change on this file since 7637 was 7467, checked in by Henrik Bettermann, 13 years ago

Page titles are deprecated. We only have labels.

File size: 908 bytes
Line 
1<p> Please select the files to reimport. Please note, that batches with  same name have to be deleted before.
2</p>
3<form method="POST">
4  <table>
5    <thead>
6      <tr>
7        <th>&nbsp;
8        </th>
9        <th>File
10        </th>
11      </tr>
12    </thead>
13    <tbody>
14      <tr tal:repeat="filename context/getImportFiles"  tal:attributes="class python: repeat['filename'].odd() and 'even' or 'odd'"> <td>
15          <input type="checkbox" name="filenames" value="filename"  tal:attributes="value filename" /> </td>
16        <td tal:content="filename">file.name</td>
17      </tr>
18      <tr tal:condition="python: len(list(context.getImportFiles())) == 0">
19        <td colspan="5"><b>No import batches available</b></td>
20      </tr>
21    </tbody>
22  </table>
23  <input type="submit" class="btn primary" name="reimport" value="Reimport" />
24  <input type="submit" class="btn" name="cancel" value="Cancel" />
25</form>
Note: See TracBrowser for help on using the repository browser.