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