mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-08-26 12:46:08 +00:00
- 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>
34 lines
886 B
HTML
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 %}
|