{% extends "base.html" %} {% block title %}Профиль — PhotoHost{% endblock %} {% block content %}
{% include "partials/alerts.html" %}
Имя пользователя {{ current_user.username }}
Роль {% if current_user.is_admin %}Администратор{% else %}Пользователь{% endif %}
Дата регистрации {{ current_user.created_at.strftime('%d.%m.%Y') }}
{% endblock %}