source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantsrootpage.pt @ 7710

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

Backup work in progress

File size: 775 bytes
Line 
1<table i18n:domain="waeup.sirp">
2  <thead>
3    <tr>
4      <th i18n:translate="">Year</th>
5      <th i18n:translate="">Code</th>
6      <th i18n:translate="">Title</th>
7      <th i18n:translate="">Application Period</th>
8    </tr>
9  </thead>
10  <tbody>
11    <tr tal:repeat="entry context/values" class="gradeC">
12      <td tal:content="entry/year">Year
13      </td>     
14      <td tal:content="entry/__name__">CODE
15      </td>
16      <td>
17             <a href=""
18           tal:attributes="href python:view.url(entry)"
19           tal:content="entry/title">TITLE</a>
20      </td>
21      <td>
22      <span tal:content="python: layout.formatDate(entry.startdate)">START</span>
23      -
24      <span tal:content="python: layout.formatDate(entry.enddate)">END</span>
25      </td>
26    </tr>
27  </tbody>
28</table>
Note: See TracBrowser for help on using the repository browser.