{% extends "admin/base.html" %} {% load i18n %} {% block title %}{% trans "New Authentication Tokens" %}{% endblock %} {% block content %}

{% trans "New Authentication Tokens" %}

{% if form.errors %} {% endif %}
{% csrf_token %} {% for field in form %}
{{ field.errors }} {{ field.label_tag }} {{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% endfor %}
{% endblock %}