source: waeup/trunk/src/waeup/browser/templates/datacenterpage.pt @ 4789

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

Merge changes from ulif-layout back into trunk (finally).

File size: 760 bytes
Line 
1<h2>Data Center</h2>
2
3<p>
4The data center helps you to manage portal data. You can upload CSV
5files here, which will be available for import afterwards.
6</p>
7
8<p>
9  <b>Storage path:</b> <span tal:content="context/storage">/foo/bar</span>
10</p>
11
12<table>
13  <thead>
14    <tr>
15      <th>File</th>
16      <th>Size</th>
17      <th>Uploaded</th>
18    </tr>
19  </thead>
20  <tbody>
21    <tr tal:repeat="file context/getFiles"
22        tal:attributes="class python: repeat['file'].odd() and 'odd' or 'even'">
23      <td tal:content="file/name">thefilename</td>
24      <td tal:content="file/size">12 k</td>
25      <td tal:content="file/uploaddate">Mar 12, 2008</td>
26    </tr>
27  </tbody>
28</table>
29
30<div>
31  <a href='@@upload'>Upload data</a>
32  <a href='@@importcsv'>Import CSV data</a>
33</div>
Note: See TracBrowser for help on using the repository browser.