{% 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_type)s.', api_token_type=api_token_type) }}
| {{ _('Datetime') }} | {{ _('Method') }} | {{ _('Endpoint') }} |
|---|---|---|
| {{ api_log_entry.utc_datetime | babel_format_datetime }} | {{ api_log_entry.method.name }} | {{ api_log_entry.route}} |
{{ _('This %(api_token_type)s has not been used so far.', api_token_type=api_token_type) }}
{% endif %} {% endblock %}