source: main/waeup.kofa/trunk/src/waeup/kofa/accesscodes/browser_templates/reimportbatchpage.pt @ 14248

Last change on this file since 14248 was 11254, checked in by uli, 11 years ago

Merge changes from uli-diazo-themed back into trunk. If this works, then a miracle happened.

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