gocron/templates/manage/login_log.html

39 lines
804 B
Go

{% template "common/header" . %}
<div class="ui grid">
{% template "manage/menu" . %}
<div class="twelve wide column">
<div class="pageHeader">
<div class="segment">
<h3 class="ui dividing header">
<div class="content">
</div>
</h3>
</div>
</div>
<table class="ui striped table">
<thead>
<tr>
<th></th>
<th>IP</th>
<th></th>
</tr>
</thead>
<tbody>
{%range $i, $v := .LoginLogs%}
<tr>
<td>{%.Username%}</td>
<td>{%.Ip%}</td>
<td>{%.Created%}</td>
</tr>
{%end%}
</tbody>
</table>
{% template "common/pagination" .%}
</div>
</div>
{% template "common/footer" . %}