bloat/templates/search.tmpl

40 lines
1.0 KiB
Cheetah
Raw Normal View History

2020-01-14 16:57:16 +00:00
{{with .Data}}
2020-02-18 22:15:37 +00:00
{{template "header.tmpl" (WithContext .CommonData $.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">
2020-07-28 14:01:32 +00:00
<span class="post-form-field">
2020-01-30 15:32:37 +00:00
<label for="query"> Query </label>
2020-10-17 16:25:08 +00:00
<input id="query" name="q" value="{{.Q}}">
2020-01-30 15:32:37 +00:00
</span>
2020-07-28 14:01:32 +00:00
<span class="post-form-field">
2020-01-30 15:32:37 +00:00
<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)}}
2020-02-26 16:31:49 +00:00
{{else}}
2020-08-22 06:48:13 +00:00
{{if .Q}}<div class="no-data-found">No data found</div>{{end}}
2019-12-26 19:18:09 +00:00
{{end}}
{{end}}
2020-07-28 14:01:32 +00:00
2019-12-26 19:18:09 +00:00
{{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}}
2020-09-22 16:22:58 +00:00
<a href="{{.NextLink}}">[next]</a>
2019-12-26 19:18:09 +00:00
{{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}}