Select Git revision
deleteUsers.html
-
a272-jones authored
admin screen "finished" mostly, can update user roles and delete with an error, idk how to fix ill fix it later.
a272-jones authoredadmin screen "finished" mostly, can update user roles and delete with an error, idk how to fix ill fix it later.
deleteUsers.html 323 B
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<p> Are you sure you want to delete the account named "{{user.user}}"? </p>
<form action="{% url 'deleteUsers' user.id %}" method="POST">
{% csrf_token %}
<a href="{% url 'manageUsers' %}">Cancel</a>
<input type="submit" name="confirm">
</form>
</body>
</html>