FreedomBox/plinth/modules/backups/templates/backups_repository_remove.html
Sunil Mohan Adapa e89e2b4a2a
*.html: Use SPDX license identifier
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-02-19 14:39:19 +02:00

37 lines
752 B
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
<h2>{{ title }}</h2>
<p>
{% trans "Are you sure that you want to remove this repository?" %}
</p>
<p>
<b>{{ repository.name }}</b>
</p>
<p>
{% blocktrans trimmed %}
The remote repository will not be deleted.
This just removes the repository from the listing on the backup page, you
can add it again later on.
{% endblocktrans %}
</p>
<p>
<form class="form" method="post">
{% csrf_token %}
<input type="submit" class="btn btn-danger"
value="{% trans "Remove Location" %}"/>
</form>
</p>
{% endblock %}