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

Log for 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.strftime('%Y-%m-%d %H:%M:%S') }} {{ api_log_entry.method.name }} {{ api_log_entry.route}}
{% else %}

This API token has not been used so far.

{% endif %} {% endblock %}