{% extends '_base.html' %} {% load static %} {% load i18n %} {% block content %} {% include '_components/header.html' %}
{% include '_components/sub_menu.html' %}

{{ resource.name }} {{ resource.active }}

{% for attribute, values in resource.attributes.items %} {% if attribute in resource.multi_valued_attributes %}
{{ attribute }} {% if attribute in resource.optional_attributes %}
({% trans 'Option' %}) {% endif %}
{% include '_components/multi_valued_input.html' with attribute=attribute values=values %}
{% else %}
{{ attribute }} {% if attribute in resource.optional_attributes %}
({% trans 'Option' %}) {% endif %}
{% endif %} {% endfor %} {% include '_components/select_backends.html' with backends=resource.backends %} {% csrf_token %} {% if new_resource %} {% else %} {% endif %}
{% if resource_type == 'Group' and not new_resource %} {% include '_components/resource_members.html' with op='add' %} {% include '_components/resource_members.html' with op='delete' %} {% elif resource_type == 'User' and not new_resource %} {% include '_components/resource_groups.html' %} {% endif %}
{% include '_components/select_backends.html' with backends=resource.backends %} {% csrf_token %}
{% endblock %}