miniflux: Use inline SVG icons

Tests:

- All the icons appear as before in both light/dark themes.

Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
This commit is contained in:
Sunil Mohan Adapa 2026-03-11 22:40:16 -07:00 committed by James Valleroy
parent 340b7e6101
commit 66f2307a19
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -5,6 +5,7 @@
{% load bootstrap %}
{% load i18n %}
{% load plinth_extras %}
{% block configuration %}
{{ block.super }}
@ -20,12 +21,12 @@
<div class="btn-toolbar">
<a href="{% url 'miniflux:create-admin-user' %}" class="btn btn-default"
role="button" title="{% trans 'Create admin user' %}">
<span class="fa fa-plus" aria-hidden="true"></span>
{% 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' %}">
<span class="fa fa-key" aria-hidden="true"></span>
{% icon 'key' %}
{% trans 'Reset user password' %}
</a>
</div>