remove obsolete subprojects

(cherry picked from commit e219932b17bf2b9776141828b3212ed210ffa251)
This commit is contained in:
2026-01-25 20:26:10 +01:00
parent 44fac3f471
commit a196f25526
587 changed files with 0 additions and 31031 deletions
-25
View File
@@ -1,25 +0,0 @@
<!--comics/publishers.html-->
{{ define "comics/publishers.html" }}
{{ template "header.html" .}}
{{ template "comics/menu.html" .}}
<ul class="nav nav-tabs">
<li role="presentation"><a href="/comics/comic">Comics</a></li>
<li role="presentation" class="active"><a href="/comics/publisher">Publishers</a></li>
<li role="presentation"><a href="/comics/artist">Artists</a></li>
</ul>
<div class="panel panel-default">
<table class="table">
<caption>Comic Publishers</caption>
<tr><th scope="col">Name</th></tr>
{{range .payload }}
<tr><td><a href="/comics/publisher/view/{{.ID.Hex}}">{{.Name}}</a></td></tr>
{{end}}
</table>
<div class="panel-body">
<a href="/comics/publisher/create">Add entry</a>
</div>
</div>
{{ template "footer.html" .}}
{{ end }}