17 lines
330 B
HTML
17 lines
330 B
HTML
{{define "title"}}
|
|
Accounts
|
|
{{end}}
|
|
|
|
{{define "new"}}
|
|
{{end}}
|
|
|
|
{{template "base" .}}
|
|
|
|
{{define "main"}}
|
|
{{range .Accounts}}
|
|
<div class="budget-item">
|
|
<a href="/budget/:budgetid/account/{{.ID}}">{{.Name}}</a>
|
|
<span class="time">{{printf "%.2f" .Balance.GetFloat64}}</span>
|
|
</div>
|
|
{{end}}
|
|
{{end}} |