source: main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/applicants/browser_templates/applicantsrootpage.pt @ 10807

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

Backup

File size: 559 bytes
Line 
1<h2 i18n:translate=""
2    tal:condition="view/label"
3    tal:content="view/label">Label</h2>
4
5<table class="display dataTable">
6  <thead>
7    <tr>
8      <th>Year</th><th>Code</th><th>Title</th>
9    </tr>
10  </thead>
11  <tbody>
12    <tr tal:repeat="entry context/values" class="gradeC">
13      <td tal:content="entry/year">Year
14      </td>     
15      <td>
16             <a href=""
17           tal:attributes="href python:view.url(entry)"
18           tal:content="entry/__name__">Code</a>
19      </td>
20      <td tal:content="entry/title">Title
21      </td>
22    </tr>
23  </tbody>
24</table>
Note: See TracBrowser for help on using the repository browser.