aboutsummaryrefslogtreecommitdiff
path: root/templates/list.tmpl
blob: dcc6ee89d58d43d3137688011507845ba814015b (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{{with .Data}}
{{template "header.tmpl" (WithContext .CommonData $.Ctx)}}
<div class="page-title"> List {{.List.Title}} </div>

<form action="/list/{{.List.ID}}/rename" method="POST">
	<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
	<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
	<input id="title" name="title" value="{{.List.Title}}">
	<button type="submit"> Rename </button>
</form>

<div class="page-title"> Users </div>
{{if .Accounts}}
<table>
{{range .Accounts}}
	<tr>
		<td class="p-0"> {{template "userlistitem.tmpl" (WithContext . $.Ctx)}} </td>
		<td class="p-0"> 
			<form class="user-list-action" action="/list/{{$.Data.List.ID}}/removeuser?uid={{.ID}}" method="POST">
				<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
				<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
				<button type="submit"> Remove </button>
			</form>
		</td>
	</tr>
{{end}}
</table>
{{else}}
<div class="no-data-found">No data found</div>
{{end}}

<div class="page-title"> Add user </div>
<form class="search-form" action="/list/{{.List.ID}}" method="GET">
	<span class="post-form-field">
		<label for="query"> Query </label>
		<input id="query" name="q" value="{{.Q}}">
	</span>
	<button type="submit"> Search </button>
</form>

{{if .Q}}
{{if .SearchAccounts}}
<table>
{{range .SearchAccounts}}
	<tr>
		<td> {{template "userlistitem.tmpl" (WithContext . $.Ctx)}} </td>
		<td>
			<form class="user-list-action" action="/list/{{$.Data.List.ID}}/adduser?uid={{.ID}}" method="POST">
				<input type="hidden" name="csrf_token" value="{{$.Ctx.CSRFToken}}">
				<input type="hidden" name="referrer" value="{{$.Ctx.Referrer}}">
				<button type="submit"> Add </button>
			</form>
		</td>
	</tr>
{{end}}
</table>
{{else}}
<div class="no-data-found">No data found</div>
{{end}}
{{end}}

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