GoGronkh/gserver/templates/admin_ats.html
Andreas Mieke 62c2481bd3 Adding admin interface
Also changing year in copyright and fixing search
2016-02-14 01:26:46 +01:00

25 lines
583 B
HTML

{{ template "header.html" . }}
<div class="row">
<div class="large-12 columns">
<h1>{{ .title }}</h1>
<table>
<thead>
<tr>
<th>#</th>
<th>Name</th>
<th>Slug</th>
</tr>
</thead>
<tbody>
{{ range .ATs }}
<tr>
<td><a href="/admin/sprecher/{{ .ID }}" id="{{ .ID }}">{{ .ID }}</a></td>
<td>{{ .Name.String }}</td>
<td>{{ .Slug.String }}</td>
</tr>
{{ end }}
</tbody>
</table>
</div>
</div>
{{ template "footer.html" . }}