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

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

Rename ApplicantsRootEditPage? to ApplicantsRootManageFormPage?.
Rename AddApplicantsContainer? to ApplicantsContainerAddFormPage?.
Change from base class WAeUPPage to WAeUPEditFormPage and WAeUPAddFormPage respectively.

File size: 481 bytes
Line 
1<h2 i18n:translate=""
2tal:condition="view/label"
3tal: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.