budgeteer/templates/dashboard.html

30 lines
775 B
HTML

{{define "dashboard"}}
<!DOCTYPE html>
<html>
<head>
<title>Registration</title>
{{template "head"}}
</head>
<body>
<div class="container" id="head">
Budgeteer - {{.GetName}}
</div>
<div class="container col-lg-12" id="content">
{{range .GetBudgets}}
<div class="budget-item">
<a href="budgets/DUTIROBDTURISNA">{{.}}</a>
<span class="time"></span>
</div>
{{end}}
<div class="budget-item">
<a href="budgets/new">New Budget</a>
<span class="time"></span>
</div>
<ul>Budgets
<li>Test</li>
</ul>
</div>
</body>
</html>
{{end}}