15 lines
443 B
Plaintext
15 lines
443 B
Plaintext
{% load ietf_filters %}{% filter wordwrap:78 %}
|
|
Dear {{ person.plain_name }},
|
|
|
|
This is a summary of API key usage during the last {{ days }} days for the key '{{ key_name }}',
|
|
created {{ key.created }} for endpoint {{ key.endpoint }}.
|
|
|
|
This API key was used {{ count }} times during this period. Showing {{ events|length }} access times:
|
|
{% for e in events %}
|
|
{{ e.time }}{% endfor %}
|
|
|
|
|
|
Best regards,
|
|
The IETF Secretariat
|
|
{% endfilter %}
|