{% extends "forms.html" %} {% block title %}Edit Group{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% csrf_token %}
{% load forms %} {% if form.errors or form.non_field_errors %}

Please correct the error{{ form.errors|pluralize }} below.

{% endif %}
{% formfield form.name %} {% formfield form.description %}
{{ form.non_field_errors }}
{% endblock %}