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

Last change on this file since 6087 was 6087, checked in by Henrik Bettermann, 14 years ago

Adding some attributes to ApplicantsContainer?. Generate title and code of containers automatically.

File size: 547 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"
13        class="gradeB">
14      <td tal:content="entry/year">Year
15      </td>     
16      <td>
17        <a href=""
18           tal:attributes="href python:view.url(entry)"
19           tal:content="entry/__name__">Code</a>
20      </td>
21      <td tal:content="entry/title">Title
22      </td>
23    </tr>
24  </tbody>
25</table>
Note: See TracBrowser for help on using the repository browser.