This commit is contained in:
2024-08-21 23:43:16 +02:00
parent 8fb1844dcd
commit 1984024394
8 changed files with 117 additions and 1 deletions

View File

@ -23,7 +23,7 @@ All Subscriptions
{{define "js"}}
<script type="module">
import {showTable} from "/static/js/all-sales.js"
import {showTable} from "/static/js/all-subscriptions.js"
showTable({{.API}});
</script>
{{end}}

View File

@ -0,0 +1,16 @@
{{template "base" .}}
{{define "title"}}
Sale
{{end}}
{{define "content"}}
<h2 class="mt-5">Sale</h2>
<hr>
{{end}}
{{define "js"}}
<script type="module">
import {showInfo} from "/static/js/sale.js"
showInfo({{.API}});
</script>
{{end}}