30 lines
555 B
Plaintext
30 lines
555 B
Plaintext
{{template "base" .}}
|
|
|
|
{{define "title"}}
|
|
All Subscriptions
|
|
{{end}}
|
|
|
|
{{define "content"}}
|
|
<h2 class="mt-5">All Subscriptions</h2>
|
|
<hr>
|
|
<table id="subscriptions-table" class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Transaction</th>
|
|
<th>Customer</th>
|
|
<th>Product</th>
|
|
<th>Amount</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
{{end}}
|
|
|
|
{{define "js"}}
|
|
<script type="module">
|
|
import {showTable} from "/static/js/all-subscriptions.js"
|
|
showTable({{.API}});
|
|
</script>
|
|
{{end}}
|