{% 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 %} {% if not new_resource %}
{% endif %}

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

{% include "includes/attribute-form-list.html" with attribute_values_list=resource.attributes is_admin=True new_resource=new_resource only %} {% if rtype == 'User' %} {% include '_components/resource_groups.html' with groups=resource.groups %} {% endif %} {% include '_components/select_backends.html' with backends=resource.backends enable_backends=resource.enable_backends %} {% csrf_token %} {% if new_resource %} {% else %} {% endif %} {% include '_components/required_field_message.html' %}
{% if rtype == '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 %}