source: main/waeup.sirp/branches/henrik-bootstrap/src/waeup/sirp/browser/templates/searchpage.pt @ 7443

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

Backup local changes in Bootstrap branch.

File size: 963 bytes
Line 
1<h2 i18n:translate="" tal:condition="view/label" tal:content="view/label">Label</h2>
2<form method="post">
3  <input type="text" name="query"
4         tal:attributes="value view/query" />
5    <input type="submit" name="SUBMIT" value="Search" />
6</form>
7<br />
8<span tal:condition="view/hitlist">
9    <h3>Search Results</h3>
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>
33</span>
Note: See TracBrowser for help on using the repository browser.