source: main/waeup.kofa/branches/uli-zc-async/src/waeup/kofa/applicants/browser_templates/applicantsrootpage.pt @ 8786

Last change on this file since 8786 was 8388, checked in by Henrik Bettermann, 12 years ago

Add description (= introduction) to ApplicantsRoot?. Adjust ApplicantsPlugin? accordingly.

File size: 919 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">
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 context/values" class="gradeC">
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.formatDate(entry.startdate)">START</span>
28      -
29      <span tal:content="python: layout.formatDate(entry.enddate)">END</span>
30      </td>
31    </tr>
32  </tbody>
33</table>
Note: See TracBrowser for help on using the repository browser.