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

Last change on this file since 11254 was 11254, checked in by uli, 11 years ago

Merge changes from uli-diazo-themed back into trunk. If this works, then a miracle happened.

File size: 935 bytes
Line 
1<span tal:condition="view/introduction" tal:omit-tag="">
2  <span tal:content="structure view/introduction">INTRODUCTION</span>
3  <br />
4</span>
5
6<table i18n:domain="waeup.kofa" class="table table-hover">
7  <thead>
8    <tr>
9      <th i18n:translate="">Year</th>
10      <th i18n:translate="">Code</th>
11      <th i18n:translate="">Title</th>
12      <th i18n:translate="">Application Period</th>
13    </tr>
14  </thead>
15  <tbody>
16    <tr tal:repeat="entry view/containers">
17      <td tal:content="entry/year">Year
18      </td>
19      <td tal:content="entry/__name__">CODE
20      </td>
21      <td>
22             <a href=""
23           tal:attributes="href python:view.url(entry)"
24           tal:content="entry/title">TITLE</a>
25      </td>
26      <td>
27      <span tal:content="python: layout.formatTZDate(entry.startdate)">START</span>
28      -
29      <span tal:content="python: layout.formatTZDate(entry.enddate)">END</span>
30      </td>
31    </tr>
32  </tbody>
33</table>
Note: See TracBrowser for help on using the repository browser.