bloat/templates/search.tmpl

39 lines
1.0 KiB
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
{{template "header.tmpl" (WithContext .HeaderData $.Ctx)}}
{{template "navigation.tmpl" (WithContext .NavbarData $.Ctx)}}
2019-12-26 19:18:09 +00:00
<div class="page-title"> Search </div>
2020-01-30 15:32:37 +00:00
<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}}">
</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>
2019-12-26 19:18:09 +00:00
{{if eq .Type "statuses"}}
{{range .Statuses}}
2020-01-14 16:57:16 +00:00
{{template "status.tmpl" (WithContext . $.Ctx)}}
2019-12-26 19:18:09 +00:00
{{end}}
{{end}}
{{if eq .Type "accounts"}}
2020-01-14 16:57:16 +00:00
{{template "userlist.tmpl" (WithContext .Users $.Ctx)}}
2019-12-26 19:18:09 +00:00
{{end}}
<div class="pagination">
2020-01-28 17:51:00 +00:00
{{if .NextLink}}
2019-12-26 19:18:09 +00:00
<a href="{{.NextLink}}">next</a>
{{end}}
</div>
2020-01-14 16:57:16 +00:00
2019-12-26 19:18:09 +00:00
{{template "footer.tmpl"}}
2020-01-14 16:57:16 +00:00
{{end}}