source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicationspage.pt @ 6063

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

Change table class also in applicationspage.

File size: 394 bytes
Line 
1<table class="display dataTable">
2  <thead>
3    <tr>
4      <th>Name</th><th>Title</th>
5    </tr>
6  </thead>
7  <tbody>
8    <tr tal:repeat="entry view/getApplications"
9        class="gradeA">
10      <td>
11        <a href=""
12           tal:attributes="href entry/url"
13           tal:content="entry/name"
14           >Name</a>
15      </td>
16      <td tal:content="entry/container/title">
17        Title
18      </td>
19    </tr>
20  </tbody>
21</table>
Note: See TracBrowser for help on using the repository browser.