Last change
on this file since 7384 was
6460,
checked in by Henrik Bettermann, 14 years ago
|
Remove actionsView css attribute and rework page templates with tables.
|
File size:
1006 bytes
|
Rev | Line | |
---|
[6447] | 1 | <h2 i18n:translate="" tal:condition="view/label" tal:content="view/label">Label</h2> |
---|
[4476] | 2 | <form method="post"> |
---|
| 3 | <input type="text" name="query" |
---|
[4660] | 4 | tal:attributes="value view/query" /> |
---|
[6447] | 5 | <input type="submit" name="SUBMIT" value="Search" /> |
---|
[4476] | 6 | </form> |
---|
[6447] | 7 | <br /> |
---|
| 8 | <span tal:condition="view/hitlist"> |
---|
[6457] | 9 | <h3>Search Results</h3> |
---|
[6447] | 10 | <table class="display dataTable"> |
---|
| 11 | <thead> |
---|
| 12 | <tr> |
---|
| 13 | <th>Code</th> |
---|
| 14 | <th>Title</th> |
---|
| 15 | <th>Type</th> |
---|
| 16 | </tr> |
---|
| 17 | </thead> |
---|
| 18 | <tbody> |
---|
| 19 | <tr tal:repeat="item view/hitlist" class="gradeB"> |
---|
| 20 | <td> |
---|
| 21 | <a href="" tal:attributes="href item/url" |
---|
| 22 | tal:content="item/code">Code</a> |
---|
| 23 | </td> |
---|
| 24 | <td tal:content="item/title"> |
---|
| 25 | Title |
---|
| 26 | </td> |
---|
| 27 | <td tal:content="item/type"> |
---|
| 28 | Type |
---|
| 29 | </td> |
---|
| 30 | </tr> |
---|
| 31 | </tbody> |
---|
| 32 | </table> |
---|
[6460] | 33 | <div class="actionButtons"> |
---|
| 34 | </div> |
---|
[6447] | 35 | </span> |
---|
Note: See
TracBrowser for help on using the repository browser.