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

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

Move form label to site layout pagetemplates. This saves even more code.

File size: 465 bytes
Line 
1<table class="display dataTable">
2  <thead>
3    <tr>
4      <th>Year</th><th>Code</th><th>Title</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>
12             <a href=""
13           tal:attributes="href python:view.url(entry)"
14           tal:content="entry/__name__">Code</a>
15      </td>
16      <td tal:content="entry/title">Title
17      </td>
18    </tr>
19  </tbody>
20</table>
Note: See TracBrowser for help on using the repository browser.