{% extends "base.html" %} {% from "macros.html" import format_size %} {% block title %}Админка — PhotoHost{% endblock %} {% block content %}
{% include "admin/_nav.html" %} {% include "partials/alerts.html" %}
{{ stats.users }} пользователей
{{ stats.photos }} фотографий
{{ stats.admins }} администраторов
{{ stats.groups }} групп
{{ format_size(stats.storage) }} хранилище
{% if current_version %}

Версия Git: {{ current_version }} · Управление версиями {% if not deploy_enabled %}(deploy выключен){% endif %}

{% endif %}

Новые пользователи

{% for user in recent_users %} {% else %} {% endfor %}
Логин Email Дата
{{ user.username }}{% if user.is_admin %} admin{% endif %} {{ user.email }} {{ user.created_at.strftime('%d.%m.%Y') }}
Нет пользователей

Последние фото

{% endblock %}