32 lines
834 B
HTML
32 lines
834 B
HTML
|
<div>
|
||
|
<input dojotAttachPoint="search" dojoAttachEvent="onkeyup: onSearch">
|
||
|
<ul>
|
||
|
{% for result in results.Result %}
|
||
|
<li><a href="{{ result.Url }}">{{ result.Title }}</a><br/>{{ result.Summary }}</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<table>
|
||
|
{% if results.firstResultPosition %}
|
||
|
<tr>
|
||
|
<th align="left">First Result</th>
|
||
|
<td>{{ results.firstResultPosition }}</td>
|
||
|
</tr>
|
||
|
{% endif %}{% if results.totalResultsAvailable %}
|
||
|
<tr>
|
||
|
<th align="left">Total Results Available</th>
|
||
|
<td>{{ results.totalResultsAvailable }}</td>
|
||
|
</tr>
|
||
|
{% endif %}{% if results.totalResultsReturned %}
|
||
|
<tr>
|
||
|
<th align="left">Results Returned</th>
|
||
|
<td>{{ results.totalResultsReturned }}</td>
|
||
|
</tr>
|
||
|
{% endif %}{% if results.type %}
|
||
|
<tr>
|
||
|
<th align="left">Type</th>
|
||
|
<td>{{ results.type }}</td>
|
||
|
</tr>
|
||
|
{% endif %}
|
||
|
</table>
|
||
|
</div>
|