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

34 lines
886 B
HTML

{% extends "app.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load extras %}
{% block configuration %}
{{ block.super }}
<h3>{% trans "Configuration" %}</h3>
<p>
{% blocktrans trimmed %}
Create an admin user to get started. Other users can be created from
within Miniflux.
{% endblocktrans %}
</p>
<div class="btn-toolbar">
<a href="{% url 'miniflux:create-admin-user' %}" class="btn btn-default"
role="button" title="{% trans 'Create admin user' %}">
{% icon 'plus' %}
{% trans 'Create admin user' %}
</a>
<a href="{% url 'miniflux:reset-user-password' %}" class="btn btn-default"
role="button" title="{% trans 'Reset user password' %}">
{% icon 'key' %}
{% trans 'Reset user password' %}
</a>
</div>
{% endblock %}