{% extends "app.html" %} {% comment %} # SPDX-License-Identifier: AGPL-3.0-or-later {% endcomment %} {% load bootstrap %} {% load i18n %} {% block configuration %} {{ block.super }}

{% trans "Manage Passwords" %}

{% trans 'Add password' %}
{% if not passwords %}

{% trans 'No passwords currently configured.' %}

{% else %}
{% for password in passwords %} {% endfor %}
{% trans "Password" %} {% trans "Permissions" %} {% trans "Comment" %}
{{ password.password }} {{ password.permissions }} {% trans password.comment %}
{% csrf_token %}
{% endif %} {% endblock %}