aboutsummaryrefslogtreecommitdiff
path: root/templates/search.tmpl
blob: a9aa0af8cbf1e8e74a7edc71ec8c0bbfe52d6d99 (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
32
33
34
35
36
37
38
39
{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<div class="page-title"> Search </div>

<form class="search-form" action="/search" method="GET">
	<span class="post-form-field">
		<label for="query"> Query </label>
		<input id="query" name="q" value="{{.Q | HTMLEscape}}">
	</span>
	<span class="post-form-field">
		<label for="type"> Type </label>
		<select id="type" name="type">
			<option value="statuses" {{if eq .Type "statuses"}}selected{{end}}>Statuses</option>
			<option value="accounts" {{if eq .Type "accounts"}}selected{{end}}>Accounts</option>
		</select>
	</span>
	<button type="submit"> Search </button>
</form>

{{if eq .Type "statuses"}}
{{range .Statuses}}
{{template "status.tmpl" (WithContext . $.Ctx)}}
{{else}}
{{if .Q}}<div class="no-data-found">No data found</div>{{end}}
{{end}}
{{end}}

{{if eq .Type "accounts"}}
{{template "userlist.tmpl" (WithContext .Users $.Ctx)}}
{{end}}

<div class="pagination">
	{{if .NextLink}}
		<a href="{{.NextLink}}">next</a>
	{{end}}
</div>

{{template "footer.tmpl"}}
{{end}}