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

Last change on this file since 11433 was 11433, checked in by Henrik Bettermann, 11 years ago

Make table on applicantsrootpage responsive.

File size: 1.0 KB
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<div class="table-responsive">
7  <table i18n:domain="waeup.kofa" class="table table-hover">
8    <thead>
9      <tr>
10        <th i18n:translate="">Year</th>
11        <th i18n:translate="">Code</th>
12        <th i18n:translate="">Title</th>
13        <th i18n:translate="">Application Period</th>
14      </tr>
15    </thead>
16    <tbody>
17      <tr tal:repeat="entry view/containers">
18        <td tal:content="entry/year">Year
19        </td>
20        <td tal:content="entry/__name__">CODE
21        </td>
22        <td>
23             <a href=""
24           tal:attributes="href python:view.url(entry)"
25           tal:content="entry/title">TITLE</a>
26        </td>
27        <td>
28        <span tal:content="python: layout.formatTZDate(entry.startdate)">START</span>
29        -
30        <span tal:content="python: layout.formatTZDate(entry.enddate)">END</span>
31        </td>
32      </tr>
33    </tbody>
34  </table>
35</div>
Note: See TracBrowser for help on using the repository browser.