{% extends "base.html" %} {% load i18n %} {% load crispy_forms_filters %} {% block title %}{% trans "Permission" %}{% endblock title %} {% block content %}

{% if group.created %} {{ _("Edit Permission") }} {% else %} {{ _("Add Permission") }} {% endif %}

{% csrf_token %} {{ redirect_field }} {{ form|crispy }} {% for error in form.errors %}
{{ error }}
{% endfor %}
{% endblock %}