{% extends "base.html" %} {# Copyright The IETF Trust 2015, All Rights Reserved #} {% load origin %} {% load widget_tweaks bootstrap3 %} {% load person_filters %} {% block title %}API keys for {{ user }}{% endblock %} {% block content %} {% origin %}

API keys for {{ user.username }}

{% csrf_token %}
{% for key in person.apikeys.all %} {% if forloop.first %} {% endif %} {% empty %} {% endfor %}
EndpointCreatedLatest useCountValid
{{ key.endpoint }} {{ key.created }} {{ key.latest }} {{ key.count }} {{ key.valid }}
{{ key.hash }} {% if key.valid %} Disable {% endif %}
You have no personal API keys.
Get a new personal API key
{% endblock %}