This repository has been archived on 2025-03-01. You can view files and clone it, but cannot push or open issues or pull requests.
trantor/templates/list.html

28 lines
637 B
HTML
Raw Normal View History

{{template "header.html" .S}}
<div class="row">
<h4 class="col-sm-10">{{.List.Title}} <a href="/list/{{.List.ListID}}?fmt=rss"><img src="/img/feed.png"/></a></h4>
2018-04-09 10:39:20 +00:00
<p class="col-sm-2 text-end">
2018-04-09 10:39:20 +00:00
{{if eq .S.User .List.User.Username}}
<a href="/list/{{.List.ListID}}/edit" class="btn btn-primary">
<svg class="bi" width="1em" height="1em" fill="currentColor">
<use xlink:href="/img/bootstrap-icons.svg#pencil"/>
</svg>
Edit
</a>
2018-04-09 10:39:20 +00:00
{{else}}
By {{.List.User.Username}}
{{end}}
</p>
</div>
{{range .List.Description}}
<p>{{.}}</p>
{{end}}
2018-04-09 10:39:20 +00:00
<br />
{{template "book_list.html" .List.Books}}
2020-03-23 19:13:58 +00:00
{{template "footer.html" .S}}