GoGronkh/gserver/templates/admin_lts.html

27 lines
695 B
HTML
Raw Normal View History

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