{% extends 'base.html' %} {% load form_tags %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

Back to Groups
{% csrf_token %} {% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {% for field in form %}
{{ field|daisyui }} {% if field.help_text %} {{ field.help_text }} {% endif %} {% for error in field.errors %} {{ error }} {% endfor %}
{% endfor %}
Cancel
{% if current_capabilities %}

Current Capabilities

{% for cap in current_capabilities %} {{ cap.capability }} {% endfor %}
{% endif %}
{% endblock %}