Files
allowances/templates/index.html
T

28 lines
630 B
HTML
Raw Normal View History

2013-02-20 21:11:44 -08:00
{{ define "title" }}Welcome{{ end }}
{{ define "content" }}
2013-02-20 21:27:09 -08:00
<div class="container pw">
2013-03-05 22:40:17 -08:00
<table class="table table-striped table-bordered table-hover">
<tr>
<td>
Name
</td>
<td>
Amount
</td>
</tr>
2013-03-04 21:56:39 -08:00
{{ range .children }}
2013-03-05 22:40:17 -08:00
<tr>
<td>
{{ .Name }}
</td>
<td>
{{ .Money }}
</td>
</tr>
2013-03-04 21:56:39 -08:00
{{ end }}
</ul>
2013-03-05 22:40:17 -08:00
</table>
2013-02-20 21:27:09 -08:00
</div>
2013-02-20 21:11:44 -08:00
{{ end }}