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

Last change on this file since 6079 was 6079, checked in by uli, 13 years ago

Fix indentation. Remove whitespaces.

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