source: main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser_templates/applicantsrootpage.pt @ 7811

Last change on this file since 7811 was 7811, checked in by uli, 13 years ago

Rename all non-locales stuff from sirp to kofa.

File size: 774 bytes
Line 
1<table i18n:domain="waeup.kofa">
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.