source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/browser_templates/applicantsrooteditpage.pt @ 5867

Last change on this file since 5867 was 5860, checked in by uli, 14 years ago

Don't display (maybe huge) description of applicants containers on
applicants root manage page.

File size: 818 bytes
Line 
1<form method="POST">
2  <table>
3    <thead>
4      <tr>
5        <th>&nbsp;</th><th>Name</th><th>Title</th>
6      </tr>
7    </thead>
8    <tbody>
9      <tr tal:repeat="entry view/getApplications"
10          tal:attributes="class python: repeat['entry'].odd() and 'odd' or 'even'">
11        <td>
12          <input type="checkbox" name="entries"
13                 tal:attributes="value entry/name" />
14        </td>
15        <td>
16          <a href=""
17             tal:attributes="href entry/url"
18             tal:content="entry/name"
19             >Some Entry</a>
20        </td>
21        <td>
22          <span tal:define="name entry/name">
23            <span tal:content="python: context[name].title">Title</span>
24          </span>
25        </td>
26      </tr>
27    </tbody>
28  </table>
29  <input type="submit" name="DELETE" value="Delete selected" />
30  <input type="reset" name="RESET" value="Reset" />
31  <input type="submit" name="CANCEL" value="Cancel" />
32</form>
Note: See TracBrowser for help on using the repository browser.