mod_js.html 442 B

1234567891011121314
  1. {% load i18n %}
  2. {% if user.is_authenticated and profile.acl_.can_moderate %}
  3. <script type="text/javascript">
  4. $(function() {
  5. {% if profile.acl_.can_delete %}
  6. $('.delete-user-prompt').submit(function() {
  7. var decision = confirm("{% trans "Are you sure you want to delete this user? This will also delete all content associated with this account." %}");
  8. return decision;
  9. });
  10. {% endif %}
  11. });
  12. </script>
  13. {% endif %}