{% load i18n core_tags lib_tags %}

{% trans "Information" %} {% trans "Various information about Modoboa" %}


{% if password_hasher %}

{% trans "You are using a deprecated password scheme!" %}

{% blocktranslate trimmed %} The password scheme {{ scheme }} has been deprecated and will be removed in the next minor version. The procedure to upgrade to a stronger scheme is as follows:

{% endblocktranslate %}

{% blocktranslate trimmed %} You must apply this procedure BEFORE you install a newest version of Modoboa, otherwise you will be unable to connect to the web interface anymore. {% endblocktranslate %}

{% blocktranslate trimmed %}Please note that you will see this message until ALL user passwords have been converted using the new scheme.{% endblocktranslate %}

{% endif %} {% if update_avail %}

{% trans "One or more updates are available!" %}

{% trans "Check the following list to find the component(s) that can be updated." %}

{% endif %}

{% trans "Applications" %}

{% for extension in extensions %} {% endfor %}
{% trans "Name" %} {% trans "Installed version" %} {% trans "Last version" %} {% trans "Description" %}
{{ extension.label }} {{ extension.version }} {% if extension.update %}{% if extension.changelog_url %}{{ extension.last_version }}{% else %}{{ extension.last_version }}{% endif %}{% else %}{{ extension.last_version }}{% endif %} {{ extension.description }}

{% trans "Active users" %}

{% connected_users as users %}{% for u in users %} {% endfor %}
{% trans "Name" %} {% trans "Role" %} {% trans "Last login" %}
{{ u.username }} {{ u.role }} {{ u.last_login }}