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

23 lines
449 B
HTML

{% extends "base.html" %}
{% block title %}EVE API Access Logs{% endblock %}
{% load pagination_tags %}
{% block content %}
<h1>Access Logs for API Key {{ userid }}</h1>
<table>
<tr><th>Service ID</th><th>Date / Time</th><th>API</th></tr>
{% autopaginate logs 20 %}
{% for log in logs %}
<tr><td>{{ log.service }}</td>
<td>{{ log.time_access }}</td>
<td>{{ log.document }}</td>
</tr>
{% endfor %}
</table>
{% paginate %}
{% endblock %}