source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantsrootpage.pt @ 7687

Last change on this file since 7687 was 7493, checked in by Henrik Bettermann, 13 years ago

Tweak pages for anonymous users with mobile browsers.

File size: 657 bytes
Line 
1<table>
2  <thead>
3    <tr>
4      <th>Year</th><th>Code</th><th>Title</th><th>Application Period</th>
5    </tr>
6  </thead>
7  <tbody>
8    <tr tal:repeat="entry context/values" class="gradeC">
9      <td tal:content="entry/year">Year
10      </td>     
11      <td tal:content="entry/__name__">Code
12      </td>
13      <td>
14             <a href=""
15           tal:attributes="href python:view.url(entry)"
16           tal:content="entry/title">Title</a>
17      </td>
18      <td>
19      <span tal:content="python: layout.formatDate(entry.startdate)">Start</span>
20      -
21      <span tal:content="python: layout.formatDate(entry.enddate)">End</span>
22      </td>
23    </tr>
24  </tbody>
25</table>
Note: See TracBrowser for help on using the repository browser.