{% extends 'common/base.html' %} {% block content %}
{% if not application.active %} {% endif %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Application name {{ application.name }}
Created {{ application.created }}
Last access {{ application.pretty_access_time }}
Status {% if application.active %}active{% else %}revoked{% endif %}
Authentication token
{% if application.active %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% endblock content %}