mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-13 10:30:16 +00:00
[joseph: initial code for the app] Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com> [sunil: use the modified framework API] [sunil: simplify setup logic, move to service file] [sunil: strict security for service file, dynamic users] [sunil: interface for managing libraries] [sunil: implement backup/restore] [sunil: add functional, action, and view tests] [sunil: use svg icon] [sunil: update description] [sunil: fix apache configuration] Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Joseph Nuthalapati <njoseph@riseup.net>
31 lines
632 B
HTML
31 lines
632 B
HTML
{% extends "base.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h3>
|
|
{% blocktrans trimmed %}
|
|
Delete calibre Library <em>{{ name }}</em>
|
|
{% endblocktrans %}
|
|
</h3>
|
|
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
Delete this library permanently? All stored e-books and saved data will be
|
|
lost.
|
|
{% 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 %}
|