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

Last change on this file was 17088, checked in by Henrik Bettermann, 2 years ago

Remove year column.

File size: 933 bytes
RevLine 
[8388]1<span tal:condition="view/introduction" tal:omit-tag="">
2  <span tal:content="structure view/introduction">INTRODUCTION</span>
3  <br />
4</span>
5
[11433]6<div class="table-responsive">
7  <table i18n:domain="waeup.kofa" class="table table-hover">
8    <thead>
9      <tr>
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/__name__">CODE
18        </td>
19        <td>
20             <a href=""
21           tal:attributes="href python:view.url(entry)"
22           tal:content="entry/title">TITLE</a>
23        </td>
24        <td>
25        <span tal:content="python: layout.formatTZDate(entry.startdate)">START</span>
26        -
27        <span tal:content="python: layout.formatTZDate(entry.enddate)">END</span>
28        </td>
29      </tr>
30    </tbody>
31  </table>
32</div>
Note: See TracBrowser for help on using the repository browser.