source: main/waeup.sirp/trunk/src/waeup/sirp/browser/templates/searchpage.pt @ 7589

Last change on this file since 7589 was 7464, checked in by Henrik Bettermann, 13 years ago

Move form label to site layout pagetemplates. This saves even more code.

File size: 898 bytes
Line 
1<form method="post">
2  <input type="text" name="query"
3         tal:attributes="value view/query" />
4    <input class="btn primary" type="submit" name="SUBMIT" value="Search" />
5</form>
6<br />
7<span tal:condition="view/hitlist">
8    <h3>Search Results</h3>
9    <table class="display dataTable">
10        <thead>
11            <tr>
12                <th>Code</th>
13                <th>Title</th>
14                <th>Type</th>
15            </tr>
16        </thead>
17        <tbody>
18            <tr tal:repeat="item view/hitlist"  class="gradeB">
19            <td>
20                <a href="" tal:attributes="href item/url"
21                           tal:content="item/code">Code</a>
22            </td>
23            <td tal:content="item/title">
24                Title
25            </td>
26            <td tal:content="item/type">
27                Type
28            </td>
29            </tr>
30        </tbody>
31    </table>
32</span>
Note: See TracBrowser for help on using the repository browser.