sklad/cmd/sklad/search.tmpl

39 lines
730 B
Cheetah
Raw Normal View History

2019-04-14 20:29:18 +02:00
{{ define "Title" }}„{{ .Query }}“ — Vyhledávání{{ end }}
{{ define "Content" }}
<h2>Vyhledávání: &bdquo;{{ .Query }}&ldquo;<h2>
<h3>Řady</h3>
{{ range .Series }}
<section>
<header>
2019-04-15 03:16:19 +02:00
<h3><a href="series?prefix={{ .Prefix }}">{{ .Prefix }}</a></h3>
2019-04-14 20:29:18 +02:00
<p>{{ .Description }}
</header>
</section>
{{ else }}
<p>Neodpovídají žádné řady.
{{ end }}
<h3>Obaly</h3>
{{ range .Containers }}
<section>
<header>
2019-04-15 03:16:19 +02:00
<h3><a href="container?id={{ .Id }}">{{ .Id }}</a>
2019-04-14 20:29:18 +02:00
{{ range .Path }}
2019-04-15 03:16:19 +02:00
<small>&laquo; <a href="container?id={{ . }}">{{ . }}</a></small>
2019-04-14 20:29:18 +02:00
{{ end }}
</h3>
</header>
{{ if .Description }}
<p>{{ .Description }}
{{ end }}
</section>
{{ else }}
<p>Neodpovídají žádné obaly.
{{ end }}
{{ end }}