{% set page_title = _("Overview") %} {% extends theme("management/management_layout.html") %} {% block breadcrumb %} {% endblock %} {% block management_content %}
{% trans %}Overview{% endtrans %}
{% if unread_reports > 0 %}

{% trans %}There is something that wants your attention.{% endtrans %}

{% trans url=url_for('management.unread_reports') %}You have {{ unread_reports }} unread reports.{% endtrans %}

{% else %}

{% trans %}Everything seems alright.{% endtrans %}

{% trans %}No new notifications.{% endtrans %}

{% endif %}
{{ all_users }}
{{ post_count }}
{{ topic_count }}
{% trans %}Statistics{% endtrans %}
{% trans %}Registered users{% endtrans %}
{{ all_users }}
{% trans %}Online users{% endtrans %}
{{ online_users }}
{% trans %}Banned users{% endtrans %}
{{ banned_users }}
{% trans %}Groups{% endtrans %}
{{ all_groups }}
{% trans %}Topics{% endtrans %}
{{ topic_count }}
{% trans %}Posts{% endtrans %}
{{ post_count }}
{% trans %}Reports{% endtrans %}
{{ report_count }}
{% trans %}Components{% endtrans %}
FlaskBB
{{ flaskbb_version }}
Celery
checking status {{ celery_version }}
Flask
{{ flask_version }}
Python
{{ python_version }}
{% trans %}Plugins{% endtrans %}
{% for plugin in plugins %}
{% if plugin.installed %} {{ plugin.name.title() }} {% else %} {{ plugin.name.title() }} {% endif %}
{% if not plugin.enabled %} not enabled {% elif plugin.enabled %} {% if plugin.is_installed %} enabled & installed {% elif not plugin.is_installable %} enabled {% elif not plugin.is_installed %} not installed {% endif %} {% endif %} {{ plugin.version }}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}