You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
834 B
31 lines
834 B
<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>
|
|
|