Select Git revision
CMakeLists.txt
-
Arthur Sonzogni authored
Dom - `vscroll_indicator`. Show a scrollback indicator on the right. Component - `Maybe`: Display an component conditionnally based on a boolean. - `Dropdown`: A dropdown select list. This address: https://github.com/ArthurSonzogni/FTXUI/issues/204
Arthur Sonzogni authoredDom - `vscroll_indicator`. Show a scrollback indicator on the right. Component - `Maybe`: Display an component conditionnally based on a boolean. - `Dropdown`: A dropdown select list. This address: https://github.com/ArthurSonzogni/FTXUI/issues/204
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>