{% extends "base.html" %} {% block title %}{{ _('API Log') }} — {{ service_name }}{% endblock %} {% block content %}
{{ _('This table shows a list of all API request authenticated with this API token.') }}
| {{ _('Datetime') }} | {{ _('Method') }} | {{ _('Endpoint') }} |
|---|---|---|
| {{ api_log_entry.utc_datetime | babel_format_datetime }} | {{ api_log_entry.method.name }} | {{ api_log_entry.route}} |
{{ _('This API token has not been used so far.')}}
{% endif %} {% endblock %}