Sunil Mohan Adapa 1d14d4a4d6
ui: Rename 'plinth_extras' template tags module to 'extras'
- Remove yet another reference to 'plinth'.

Tests:

- Some basic pages work.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
2026-03-19 19:14:58 -04:00

49 lines
1.4 KiB
HTML

{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load i18n %}
{% load extras %}
{% block configuration %}
{{ block.super }}
<h3>{% trans "Manage Content Packages" %}</h3>
<div class="btn-toolbar">
<a href="{% url 'kiwix:add-package' %}" class="btn btn-default"
role="button" title="{% trans 'Add a content package' %}">
{% icon 'plus' %}
{% trans 'Add Package' %}
</a>
</div>
<div class="row">
<div class="col-md-6">
{% if not packages %}
<p>{% trans 'No content packages available.' %}</p>
{% else %}
<div id="kiwix-packages" class="list-group list-group-two-column">
{% for id, package in packages.items %}
<div class="list-group-item">
<a id="{{ id }}" class="primary"
href="/kiwix/viewer#{{ package.path }}"
title="{{ package.description }}">
{{ package.title }}
</a>
<a href="{% url 'kiwix:delete-package' id %}"
class="btn btn-default btn-sm secondary" role="button"
title="{% blocktrans with title=package.title %}Delete package {{ title }}{% endblocktrans %}">
{% icon 'trash-o' %}
</a>
</div>
{% endfor %}
</div>
{% endif %}
</div>
</div>
{% endblock %}