manager: improve confirmation dialog message when removing an user from a role (#7011)

This commit is contained in:
Benjamin Dauvergne 2015-04-22 10:38:25 +02:00
parent d20a7cc1bc
commit 3a03f57732
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@
<th></th>
{% endblock %}
{% block table.tbody.last.column %}
<td><a class="icon-remove-sign js-remove-user" data-confirm="{% blocktrans with username=row.record.username %}Do you really want to delete user &quot;{{ username }}&quot; ?{% endblocktrans %}" href="#"></a></td>
<td><a class="icon-remove-sign js-remove-user" data-confirm="{% blocktrans with username=row.record.username role=active_role.name %}Do you really want to remove user &quot;{{ username }}&quot; from role {{ role }}&nbsp;?{% endblocktrans %}" href="#"></a></td>
{% endblock %}