aboutsummaryrefslogtreecommitdiff
path: root/sklad/container.tmpl
blob: b2614963d3c6efbc2f42560aa79334ca20c51361 (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
{{ define "Title" }}Přehled{{ end }}
{{ define "Content" }}

{{ if .Id }}
<h2>{{ .Id }}</h2>
{{ else }}
<h2>Obaly nejvyšší úrovně</h2>
{{ end }}

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

{{ if .Children }}
{{ range .Children }}
<fieldset>
<h3><a href="/container?id={{ .Id }}">{{ .Id }}</a></h3>
{{ if .Description }}
<p>{{ .Description }}
{{ end }}
</fieldset>
{{ end }}
{{ else }}
<p>Obal je prázdný.
{{ end }}

{{ end }}