{% extends 'base_admin.html' %} {% load static %} {% load i18n %} {% block content %} {% include '_components/messages_alert.html' %} {% if not new_resource %} {% include '_components/sub_menu.html' with type='resource' resource=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 %}
{% if new_resource %} {% include '_components/select_backends.html' with backends=resource.backends enable_backends=resource.enable_backends default_select=resource.default_select operation='add' %} {% else %} {% include '_components/select_backends.html' with backends=resource.backends enable_backends=resource.enable_backends default_select=resource.default_select operation='modify' %} {% endif %}
{% if new_resource %} {% include '_components/sub_menu/button.html' with type='resource_confirm_add' rtype=rtype resource=resource button_id='check-validity-button' %} {% else %} {% include '_components/sub_menu/button.html' with type='resource_confirm_modify' rtype=rtype resource=resource button_id='check-validity-button'%} {% endif %}
{% include '_components/required_field_message.html' %} {% csrf_token %}
{% if rtype == 'Group' and not new_resource %} {% include '_components/resource_add_members.html' %} {% include '_components/resource_delete_members.html' %} {% endif %} {% endblock %} {% block footer_scripts %} {{ block.super }} {% endblock %}