source: main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/students/browser_templates/paymentspage.pt @ 11024

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

Backup of local changes in branch (work in progress).

File size: 791 bytes
Line 
1<h2 tal:content="view/label">TITLE</h2>
2
3<table class="display dataTable">
4  <thead>
5    <tr>
6      <th>Payment Id</th>
7      <th>Creation Date</th>
8      <th>Payment Date</th>
9      <th>Category</th>
10      <th>Item</th>
11      <th>State</th>
12    </tr>
13  </thead>
14  <tbody>
15    <tr tal:repeat="value context/values">
16      <td> <a tal:attributes="href value/__name__">
17      <span tal:content="value/p_id">PID</span></a></td>
18      <td tal:content="python: layout.formatDatetime(value.creation_date)">CREATION DATE</td>
19      <td tal:content="python: layout.formatDatetime(value.payment_date)">PAYMENT DATE</td>
20      <td tal:content ="value/category">CATEGORY</td>
21      <td tal:content ="value/p_item">ITEM</td>
22      <td tal:content ="value/state">STATE</td>
23    </tr>
24  </tbody>
25</table>
Note: See TracBrowser for help on using the repository browser.