{% extends '_components/sub_menu/simple_modal.html' %} {% load i18n %} {% block 'btn_label' %} {% if rtype == 'User' %} {% trans 'Rename User' %} {% elif rtype == 'Group' %} {% trans 'Rename Group' %} {% endif %} {% endblock %} {% block 'modal_title' %} {% if rtype == 'User' %} {% trans 'Rename User' %} {% elif rtype == 'Group' %} {% trans 'Rename Group' %} {% endif %} {% endblock %} {% block 'modal_body' %}

{% blocktrans with name=resource.name %}Input new name if you want to rename '{{ name }}'.{% endblocktrans %}

{% include '_components/select_backends.html' with backends=resource.backends operation='rename' default_select=resource.default_select %}
{% csrf_token %}
{% endblock %}