mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: Veiko Aasa <veiko17@disroot.org>
48 lines
1.4 KiB
HTML
48 lines
1.4 KiB
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block configuration %}
|
|
{{ block.super }}
|
|
|
|
<h3>{% trans "Manage Libraries" %}</h3>
|
|
|
|
<div class="btn-toolbar">
|
|
<a href="{% url 'calibre:create-library' %}" class="btn btn-default"
|
|
role="button" title="{% trans 'Create Library' %}">
|
|
<span class="fa fa-plus" aria-hidden="true"></span>
|
|
{% trans 'Create Library' %}
|
|
</a>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
{% if not libraries %}
|
|
<p>{% trans 'No libraries available.' %}</p>
|
|
{% else %}
|
|
<div id="calibre-libraries" class="list-group list-group-two-column">
|
|
{% for library in libraries %}
|
|
<div class="list-group-item">
|
|
<a class="primary"
|
|
href="/calibre/#library_id={{ library }}&panel=book_list"
|
|
title="{% blocktrans %}Go to library {{ library }}{% endblocktrans %}">
|
|
{{ library }}
|
|
</a>
|
|
|
|
<a href="{% url 'calibre:delete-library' library %}"
|
|
class="btn btn-default btn-sm secondary" role="button"
|
|
title="{% blocktrans %}Delete library {{ library }}{% endblocktrans %}">
|
|
<span class="fa fa-trash-o" aria-hidden="true"></span>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|