This commit is contained in:
Éric Lemoine
2013-02-20 10:38:25 +01:00
parent 17c3936ab6
commit 5d14b9e2d4
1919 changed files with 559755 additions and 2588 deletions
+31
View File
@@ -0,0 +1,31 @@
<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>