{% extends "tasks/base.html" %} {% load tasks_tags %} {% block title %}{{ form_title }} — Staff Panel{% endblock %} {% block topbar_title %}{{ form_title }}{% endblock %} {% block content %}
{% csrf_token %}
{{ form.name }} {% if form.name.errors %}
{{ form.name.errors.0 }}
{% endif %}
{{ form.description }}
{% for cat, entries in catalog.items %}
{{ cat }}
{% for key, label in entries %} {% with field_name='perm_'|add:key %} {% endwith %} {% endfor %}
{% endfor %}
Cancel
{% endblock %}