{% extends '_base.html' %} {% load static %} {% load i18n %} {% block content %} {% include '_components/header.html' %}
{% if error_message %}
{{ error_message }}
{% endif %} {% if info_message %}
{{ info_message }}
{% endif %}

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

{% for attribute, values, properties in resource.attributes %} {% if properties.multi_value %} {% include '_components/multi_valued_input.html' with title=attribute %} {% else %}
{{ attribute }} {% if properties.required %} * {% endif %}
{% endif %} {% endfor %} {% if resource_type == 'User' %} {% include '_components/resource_groups.html' with groups=resource.groups %} {% endif %} {% include '_components/select_backends.html' with backends=resource.backends %} {% csrf_token %} {% if new_resource %} {% else %} {% endif %}

{% trans 'Attributes with "*" are required.' %}

{% if resource_type == 'Group' and not new_resource %} {% include '_components/resource_members.html' with op='add' %} {% include '_components/resource_members.html' with op='delete' %} {% endif %}
{% include '_components/select_backends.html' with backends=resource.backends %} {% csrf_token %}
{% endblock %}