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

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

Internationalize accessodes package.

File size: 1.1 KB
Line 
1<p i18n:domain="waeup.sirp">
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.sirp">
6  <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 primary" name="reimport"
28      tal:attributes="value view/reimport_button" />
29  <input type="submit" class="btn" name="cancel"
30      tal:attributes="value view/cancel_button" />
31</form>
Note: See TracBrowser for help on using the repository browser.