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

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

{% for attribute, values in resource.attributes %}
{% if attribute.multi_value %} {% for value in values %}
{% empty %}
{% endfor %}
{% trans 'Add Input' %}
{% else %} {% endif %} {% translate_description attribute resource_type target as description %} {% if description %}

{{ description }}

{% 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 %} {% include '_components/required_field_message.html' %}
{% 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 %} {% block footer_scripts %} {{ block.super }} {% endblock %}