import sources from develop/0.1.0

This commit is contained in:
Thomas Peetz
2025-04-29 12:52:55 +02:00
parent 304005822c
commit 4c96de27db
976 changed files with 58265 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
<!--library/publishers.html-->
{{ define "library/publishers.html" }}
{{ template "header.html" .}}
{{ template "library/menu.html" .}}
<ul class="nav nav-tabs">
<li role="presentation"><a href="/library/book">Books</a></li>
<li role="presentation"><a href="/library/author">Authors</a></li>
<li role="presentation" class="active"><a href="/library/publisher">Publishers</a></li>
</ul>
<div class="panel panel-default">
<table class="table">
<caption>Liste der Verlage</caption>
<tr><th scope="col">Name</th></tr>
{{range .payload }}
<tr><td><a href="/library/publisher/view/{{.ID.Hex}}">{{.Name}}</a></td></tr>
{{end}}
</table>
<div class="panel-body">
<a href="/library/publisher/create">Add entry</a>
</div>
</div>
{{ template "footer.html" .}}
{{end}}