aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dojox/rpc/demos/templates/yahoo.html
blob: 04339d29a1bbaca9168a0d309b42d13781a93fdf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>