Files
test-auth/app/eve_api/templates/eve_api/log.html

33 lines
684 B
HTML

{% extends "base.html" %}
{% block title %}EVE API Access Logs{% endblock %}
{% block content %}
<div class="page-header">
<h1>Access Logs for API Key {{ userid }}</h1>
</div>
<table class="zebra-striped" id="logs">
<thead>
<tr><th>Service ID</th><th>Date / Time</th><th>API</th></tr>
</thead>
<tbody>
{% for log in logs %}
<tr>
<td>{{ log.service }}</td>
<td>{{ log.time_access }}</td>
<td>{{ log.document }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<script src="/static/js/jquery.tablesorter.min.js"></script>
<script >
$(function() {
$("table#logs").tablesorter({ sortList: [[1,0]] });
});
</script>
{% endblock %}