FreedomBox/plinth/templates/uninstall.html
Sunil Mohan Adapa 11f12fcbf0
uninstall: Remove experimental warning
- 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>
2023-06-16 11:16:29 -04:00

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 %}