mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-11 08:23:49 +00:00
30 lines
724 B
HTML
30 lines
724 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{% trans "Delete User" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed with username=object.username %}
|
|
Delete user <strong>{{ username }}</strong> permanently?
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-md btn-primary"
|
|
value="{% blocktrans with username=object.username %}Delete {{ username }}{% endblocktrans %}"/>
|
|
|
|
<a href="{% url 'users:index' %}" role="button"
|
|
class="btn btn-md btn-primary">{% trans "Cancel" %}</a>
|
|
</form>
|
|
|
|
{% endblock %}
|