{# -*- engine:django -*- #} {% extends "core/base.html" %} {% load i18n material_form %} {% block browser_title %}{% blocktrans %}Assign child groups to groups{% endblocktrans %}{% endblock %} {% block page_title %} {% blocktrans %}Assign child groups to groups{% endblocktrans %} {% endblock %} {% block content %} {% if not page %}

info {% blocktrans %} You can use this to assign child groups to groups. Please use the filters below to select groups you want to change and click "Next". {% endblocktrans %}

{% csrf_token %} {% form form=filter.form %}{% endform %} clear {% trans "Clear all filters" %}

{% trans "Currently selected groups" %}

{% for group in filter.qs %}
{{ group }}
{% endfor %} {% if filter.qs %}

{% csrf_token %}

{% else %}

warning {% blocktrans %} Please select some groups in order to go on with assigning. {% endblocktrans %}

{% endif %} {% else %}

{% trans "Current group:" %} {{ group }}

warning {% blocktrans %}Please be careful!{% endblocktrans %}
{% blocktrans %} If you click "Back" or "Next" the current group assignments are not saved. If you click "Save", you will overwrite all existing child group relations for this group with what you selected on this page. {% endblocktrans %}

{% if page.has_previous %} {% endif %} {% if page.has_next %} {% endif %}

{% if page.has_next %} {% endif %}

{% csrf_token %} {% include "components/chips.html" with form_field=form.child_groups %}

{% if page.has_previous %} {% endif %} {% if page.has_next %} {% endif %}

{% if page.has_next %} {% endif %}

{% endif %} {% endblock %}