{% extends "base.html" %} {% load i18n %} {% load crispy_forms_filters %} {% block title %} {# Check if an 'object' exists in the context #} {% if object %} {% trans 'Update Group' %} {% else %} {% trans 'Add New Group' %} {% endif %} {% endblock %} {% block content %} {% comment %}

{% if staff.created %} {{ _("Edit Group") }} {% else %} {{ _("Add Group") }} {% endif %}

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

{% if staff.created %} {{ _("Edit Group") }} {% else %} {{ _("Add Group") }} {% endif %}

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