aboutsummaryrefslogtreecommitdiff
path: root/templates/usersearch.tmpl
blob: e95129c7e995025b52e2c2c02e0181fc67365b39 (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
{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<div class="page-title"> Search {{EmojiFilter (html .User.DisplayName) .User.Emojis}}'s statuses </div>

<form class="search-form" action="/usersearch/{{.User.ID}}" method="GET">
	<span class="post-form-field>
		<label for="query"> Query </label>
		<input id="query" name="q" value="{{.Q | html}}">
	</span>
	<button type="submit"> Search </button>
</form>

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

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

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