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

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

Translation of browser and university package completed (hopefully).

File size: 1.0 KB
RevLine 
[4476]1<form method="post">
2  <input type="text" name="query"
[4660]3         tal:attributes="value view/query" />
[7707]4    <input class="btn primary" type="submit" name="SUBMIT"
5      tal:attributes="value view/search_button"/>
[4476]6</form>
[6447]7<br />
[7707]8<span  i18n:domain="waeup.sirp" tal:condition="view/hitlist">
9    <h3 i18n:translate="">Search Results</h3>
[6447]10    <table class="display dataTable">
11        <thead>
12            <tr>
[7707]13                <th i18n:translate="">Code</th>
14                <th i18n:translate="">Title</th>
15                <th i18n:translate="">Type</th>
[6447]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"
[7707]22                           tal:content="item/code">CODE</a>
[6447]23            </td>
24            <td tal:content="item/title">
[7707]25                TITLE
[6447]26            </td>
27            <td tal:content="item/type">
[7707]28                TTYPE
[6447]29            </td>
30            </tr>
31        </tbody>
32    </table>
33</span>
Note: See TracBrowser for help on using the repository browser.