{% extends "base.html" %} {% block title %}{{ _('API Log') }} — {{ service_name }}{% endblock %} {% block content %}

{{ _('Log for API token "%(api_token)s"', api_token=api_token_description) }}

{% if api_log_entries %}

{{ _('This table shows a list of all API request authenticated with this API token.') }}

{% for api_log_entry in api_log_entries %} {% endfor %}
{{ _('Datetime') }} {{ _('Method') }} {{ _('Endpoint') }}
{{ api_log_entry.utc_datetime | babel_format_datetime }} {{ api_log_entry.method.name }} {{ api_log_entry.route}}
{% else %}

{{ _('This API token has not been used so far.')}}

{% endif %} {% endblock %}