1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-01-09 03:00:25 +00:00
mycorrhiza/views/history.qtpl

14 lines
365 B
Plaintext
Raw Normal View History

2021-07-01 09:37:41 +00:00
{% import "fmt" %}
2021-02-20 16:50:25 +00:00
{% import "net/http" %}
2021-09-06 17:46:34 +00:00
{% import "github.com/bouncepaw/mycorrhiza/l18n" %}
2021-02-20 16:50:25 +00:00
2022-03-20 21:24:40 +00:00
{% func History(rq *http.Request, hyphaName, list string, lc *l18n.Localizer) %}
2021-02-20 16:50:25 +00:00
<main class="main-width">
<article class="history">
2021-09-06 17:46:34 +00:00
<h1>{%s= fmt.Sprintf(lc.Get("ui.history_title"), beautifulLink(hyphaName)) %}</h1>
2021-02-20 16:50:25 +00:00
{%s= list %}
</article>
</main>
{% endfunc %}