mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-01-21 07:55:00 +00:00
- The feature has undergone multiple rounds of improvements and testing. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
34 lines
742 B
HTML
34 lines
742 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<h2>
|
|
{% blocktrans trimmed with app_name=app_info.name %}
|
|
Uninstall App <em>{{ app_name }}</em>?
|
|
{% endblocktrans %}
|
|
</h2>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
All app data and configuration will be permanently lost. App may be
|
|
installed freshly again.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
<form class="form form-uninstall" method="post">
|
|
{% csrf_token %}
|
|
|
|
{{ form|bootstrap }}
|
|
|
|
<input type="submit" class="btn btn-danger" name="uninstall_confirm"
|
|
value="{% trans 'Uninstall' %}"/>
|
|
</form>
|
|
</p>
|
|
{% endblock %}
|