tvid/views/adminpanel.tpl

28 lines
661 B
Smarty
Raw Permalink Normal View History

2020-03-11 01:52:30 +00:00
% rebase('adminpagebase.tpl', refresh=None, title='tvid administration')
<h1>TVs</h1>
2020-03-10 19:33:57 +00:00
2020-03-11 01:52:30 +00:00
<table class="table table-striped table-hover">
<thead class="thead-dark">
<tr>
<th scope="col">Display ID</th>
<th scope="col">Descriptive Memo</th>
<th scope="col">Last Seen</th>
<th scope="col">Target URL</th>
<th scope="col">Edit</th>
</tr>
</thead>
<tbody>
2020-03-10 19:33:57 +00:00
2020-03-11 01:52:30 +00:00
% for tv in tvs:
<tr>
<th scope="row">{{tv.displayid}}</th>
<td>{{tv.memo or '(none)'}}</td>
<td>{{tv.lastSeen}}</td>
<td>{{tv.target}}</td>
<td><a href="/admin/edit/{{tv.displayid}}" class="btn btn-success btn-sm">Edit</a></td>
</tr>
% end
</tbody>
</table>