mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-18 08:33:41 +00:00
Helps: #1938. Signed-off-by: Fioddor Superconcentrado <fioddor@gmail.com> [sunil: Don't split the string into two, mark it in full] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
27 lines
551 B
HTML
27 lines
551 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>{% trans "Delete Connection" %}</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Delete connection <strong>{{ name }}</strong> permanently?
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-md btn-danger"
|
|
value="{% blocktrans %}Delete {{ name }}{% endblocktrans %}"/>
|
|
</form>
|
|
|
|
{% endblock %}
|