source: main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/datacenterimport1page.pt @ 6693

Last change on this file since 6693 was 4858, checked in by uli, 15 years ago

Merge changes from ulif-importers branch back into trunk.

File size: 889 bytes
Line 
1<h2>Process CSV file</h2>
2<h3>Step 1</h3>
3<p>
4  Using batch processing you can mass-create, mass-update, or
5  mass-remove datasets from the database using CSV files.
6</p>
7<p>
8  Please select a file for processing from the list below
9</p>
10<form method="POST">
11  <table>
12    <thead>
13      <th /><th>Filename</th><th>Datasets</th><th>Size</th><th>Date</th>
14    </thead>
15    <tbody>
16      <tr tal:repeat="file view/getFiles"
17          tal:attributes="class python: repeat['file'].odd() and 'odd' or ''">
18        <td>
19          <button type="submit" name="select"
20                  tal:attributes="value file/name"
21                  >Select</button>
22        </td>
23        <td tal:content="file/name">Filename.csv</td>
24        <td tal:content="python: file.lines - 1">12</td>
25        <td tal:content="file/size">123 Bytes</td>
26        <td tal:content="file/getDate">1.1.1970</td>
27      </tr>
28    </tbody>
29  </table>
30  <input type="submit" name="cancel" value="Cancel" />
31</form>
Note: See TracBrowser for help on using the repository browser.