{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}

Dashboard

Szybki podgląd stanu systemu i dostępnych endpointów.

Aktywne bany
{{ stats.system.active_bans|int }}
ogółem
Drupal attacks
{{ stats.system.drupal_attacks|int }}
wykryte łącznie
Uptime
{{ stats.system.uptime }}
czas działania
Zużycie pamięci
{{ stats.system.memory_usage }}
aktualnie
Informacje o systemie
{% for key, value in sys_info.system.items() %} {% endfor %} {% if sys_info.system|length == 0 %} {% endif %}
{{ key | capitalize }} {{ value }}
Brak danych
Informacje o aplikacji
{% for key, value in sys_info.application.items() %} {% endfor %} {% if sys_info.application|length == 0 %} {% endif %}
{{ key | capitalize }} {{ value }}
Brak danych
Dostępne endpointy API ({{ routes|length }})
{% for route in routes %} {% endfor %} {% if routes|length == 0 %} {% endif %}
# URL Metody Akcje
{{ loop.index }} {{ route.url }} {% for m in route.methods.split(',') if route.methods %} {{ m.strip() }} {% endfor %}
Brak endpointów
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}