{% extends "group/snippets/group_form.html" %}
{% block dataset_fields %}
{% if action == "edit" %}{{ super() }}{% endif %}
{% endblock %}
{% block custom_fields %}
{% if action == "edit" %}{{ super() }}{% endif %}
{% endblock %}
{% block save_text %}
{%- if action == "edit" -%}
{{ h.humanize_entity_type('group', group_type, 'update label') or _('Update Group') }}
{%- else -%}
{{ h.humanize_entity_type('group', group_type, 'create label') or _('Create Group') }}
{%- endif -%}
{% endblock %}
{% block delete_button %}
{% if action == "edit" %}{{ super() }}{% endif %}
{% endblock %}