aboutsummaryrefslogtreecommitdiff
path: root/cmd/sklad/series.tmpl
blob: 4956e3a77cdd5ce6c4576f23cf5514f63e735afe (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
{{ define "Title" }}{{ or .Prefix "Řady" }}{{ end }}
{{ define "Content" }}

{{ if .Prefix }}
<h2>{{ .Prefix }}</h2>

{{ if .Description }}
<p>{{ .Description }}
{{ end }}
{{ else }}

<section>
<form method=post action="/series">
<header>
	<h3>Nová řada</h3>
	<input type=text name=prefix placeholder="Prefix řady">
	<input type=text name=description placeholder="Popis řady"
	><input type=submit value="Uložit">
	</form>
</header>
</form>
</section>

{{ range $prefix, $desc := .AllSeries }}
<section>
<header>
	<h3><a href="/series?prefix={{ $prefix }}">{{ $prefix }}</a></h3>
	<form method=post action="/series?prefix={{ $prefix }}">
	<input type=text name=description value="{{ $desc }}"
	><input type=submit value="Uložit">
	</form>
	<form method=post action="/series?prefix={{ $prefix }}&amp;remove">
	<input type=submit value="Odstranit">
	</form>
</header>
</section>
{{ else }}
<p>Nejsou žádné řady.
{{ end }}

{{ end }}

{{ end }}