1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2025-02-08 07:00:12 +00:00
mycorrhiza/views/history.qtpl

14 lines
365 B
Plaintext
Raw Normal View History

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