mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-18 09:10:49 +00:00
- This makes the functional test focus more on the repository that is added rather than all remote repositories. Tests: - Functional tests for backups app works. Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
36 lines
772 B
HTML
36 lines
772 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 form-remove-location" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-danger"
|
|
value="{% trans "Remove Location" %}"/>
|
|
</form>
|
|
</p>
|
|
|
|
{% endblock %}
|