fisch/views/search.html

37 lines
544 B
HTML
Raw Normal View History

2025-02-07 18:42:50 +01:00
{{template "partials/base-top" .}}
<form action="/search" method="post">
<input type="text" name="search" placeholder="Suche . . .">
<button type="submit">🔍</button>
</form>
2025-02-18 19:45:28 +01:00
{{ if eq .SearchResultCount -1 }}
{{ else }}
{{ if gt .SearchResultCount 0 }}
<table>
<tr>
<th>Ort</th>
<th>Kistenbezeichnung</th>
<th>Möglicher Inhalt</th>
</tr>
<tr>
<td>A</td>
<td>A</td>
<td>A</td>
</tr>
</table>
{{ else }}
<p>Keine Ergebnisse gefunden.</p>
{{ end }}
{{ end }}
2025-02-07 18:42:50 +01:00
{{template "partials/base-bottom" .}}