FreedomBox/plinth/modules/kiwix/templates/kiwix-add-package.html
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

47 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load extras %}
{% block content %}
<h3>{{ title }}</h3>
<p>
{% blocktrans trimmed %}
You can <a href="https://library.kiwix.org" target="_blank"
rel="noopener noreferrer">download</a> content packages from the Kiwix
project or <a href="https://openzim.org/wiki/Build_your_ZIM_file"
target="_blank" rel="noopener noreferrer">create</a> your own.
{% endblocktrans %}
</p>
{% if max_filesize %}
<div class="alert alert-warning d-flex align-items-center" role="alert">
<div class="me-2">
{% icon 'exclamation-triangle' %}
<span class="visually-hidden">{% trans "Caution:" %}</span>
</div>
<div>
{% blocktrans trimmed %}
You have {{ max_filesize }} of free disk space available.
{% endblocktrans %}
</div>
</div>
{% endif %}
<form class="form form-kiwix" enctype="multipart/form-data" method="post">
{% csrf_token %}
{{ form|bootstrap }}
<input type="submit" class="btn btn-primary"
value="{% trans "Upload ZIM file" %}"/>
</form>
{% endblock %}