source: main/waeup.sirp/trunk/src/waeup/sirp/students/browser_templates/paymentspage.pt @ 7510

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

Move form label to site layout pagetemplates. This saves even more code.

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