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

Last change on this file 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
RevLine 
[7811]1<p i18n:domain="waeup.kofa">
[7719]2Please select the files to reimport. Please note, that batches with
3same name have to be deleted before.
[5132]4</p>
[7811]5<form method="POST" i18n:domain="waeup.kofa">
[11254]6  <table class="table">
[5132]7    <thead>
8      <tr>
[7459]9        <th>&nbsp;
10        </th>
[7719]11        <th i18n:translate="">File
[7459]12        </th>
[5132]13      </tr>
14    </thead>
15    <tbody>
[7719]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>
[5132]21      </tr>
22      <tr tal:condition="python: len(list(context.getImportFiles())) == 0">
[7719]23        <td colspan="5"><b i18n:translate="">No import batches available</b></td>
[5132]24      </tr>
25    </tbody>
26  </table>
[11254]27  <input type="submit" class="btn btn-primary" name="reimport"
[7719]28      tal:attributes="value view/reimport_button" />
[11254]29  <input type="submit" class="btn btn-default" name="cancel"
[7719]30      tal:attributes="value view/cancel_button" />
[7459]31</form>
Note: See TracBrowser for help on using the repository browser.