{% load i18n %} {% if user.is_authenticated and profile.acl_.can_moderate %} <script type="text/javascript"> $(function() { {% if profile.acl_.can_delete %} $('.delete-user-prompt').submit(function() { var decision = confirm("{% trans "Are you sure you want to delete this user? This will also delete all content associated with this account." %}"); return decision; }); {% endif %} }); </script> {% endif %}