tren/views/translate.html
ngn 15ffbfae4d
All checks were successful
Build and publish the docker image / build (push) Successful in 38s
save the provided dictionary accross translations
Signed-off-by: ngn <ngn@ngn.tf>
2025-04-05 10:30:59 +03:00

26 lines
532 B
HTML

<html>
<head>
{{template "head" .}}
<link rel="stylesheet" href="/css/translation.css">
</head>
<body>
{{template "navbar" .}}
<main>
{{template "search" .}}
{{if and (not .suggestions) (not .fields)}}
<h3 class="result">No results :(</h3>
{{end}}
{{if .suggestions}}
<h3 class="result">Did you mean...</h3>
{{range .suggestions}}
<p>{{.}}</p>
{{end}}
{{else}}
{{template "table" .}}
{{end}}
</main>
</body>
</html>