{% extends "base.html" %} {% block title %}Профиль - DevOpsLab{% endblock %} {% block page_title %}Профиль пользователя{% endblock %} {% block header_actions %} Назад {% endblock %} {% block content %}
{{ user.username[0].upper() }}

{{ profile.full_name if profile and profile.full_name else user.username }}

@{{ user.username }}

{% if user.is_superuser %} Администратор {% else %} Пользователь {% endif %} {% if user.is_active %} Активен {% else %} Неактивен {% endif %}

Дата регистрации {{ user.created_at.strftime('%d.%m.%Y') if user.created_at else 'N/A' }}
{% if user.updated_at %}
Последнее обновление {{ user.updated_at.strftime('%d.%m.%Y %H:%M') }}
{% endif %}
Статистика
{{ stats.presets }}
Preset'ов
{{ stats.dockerfiles }}
Dockerfile'ов
{{ stats.playbooks }}
Playbook'ов
{{ stats.commands }}
Команд
Информация о профиле
{{ user.username }}
{{ profile.full_name if profile and profile.full_name else 'Не указано' }}
{% if profile and profile.email %} {{ profile.email }} {% else %} Не указан {% endif %}
{% if user.is_superuser %} Администратор {% else %} Пользователь {% endif %}

Настройки Docker
{% if profile and profile.dockerhub_username %} {{ profile.dockerhub_username }} {% if profile.dockerhub_repository %} / {{ profile.dockerhub_repository }} {% endif %} {% else %} Не настроено {% endif %}
{% if profile and profile.harbor_url %} {{ profile.harbor_url }} {% if profile.harbor_project %} / {{ profile.harbor_project }} {% endif %} {% else %} Не настроено {% endif %}
Редактирование профиля
Имя пользователя нельзя изменить
{% endblock %} {% block scripts %} {% endblock %}