mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Remove redundant </p> to make translation easier. Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
38 lines
775 B
HTML
38 lines
775 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>
|
|
{% blocktrans trimmed %}
|
|
Delete wiki <em>{{ name }}</em>
|
|
{% endblocktrans %}
|
|
</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
<strong>Hint</strong>: You can download a copy of this wiki from within
|
|
Feather Wiki before deleting it.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Delete this wiki file permanently?
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
<form class="form form-delete" method="post">
|
|
{% csrf_token %}
|
|
|
|
<input type="submit" class="btn btn-md btn-danger"
|
|
value="{% blocktrans %}Delete{% endblocktrans %}"/>
|
|
</form>
|
|
|
|
{% endblock %}
|