Add accounts
This commit is contained in:
23
web/accounts.html
Normal file
23
web/accounts.html
Normal file
@@ -0,0 +1,23 @@
|
||||
{{define "accounts"}}
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Budgets</title>
|
||||
|
||||
{{template "head"}}
|
||||
</head>
|
||||
<body>
|
||||
<div class="container" id="head">
|
||||
Budgeteer - {{.Token.GetName}}
|
||||
</div>
|
||||
<div class="container col-lg-12" id="content">
|
||||
{{range .Accounts}}
|
||||
<div class="budget-item">
|
||||
<a href="account/{{.ID}}">{{.Name}}</a>
|
||||
<span class="time"></span>
|
||||
</div>
|
||||
{{end}}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
{{end}}
|
Reference in New Issue
Block a user