{% extends "base.html" %} {% block title %}Вход — Тестирование{% endblock %} {% block content %} {% set fio_as_login = dev_fio_enabled or hr_auth_enabled %} {% if ui_variant == 'legacy' %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, msg in messages %} {% if category == 'error' %}{{ msg }}{% endif %} {% endfor %}
{% endif %} {% endwith %}
{% else %}
login

Вход в систему

{% if dev_fio_enabled %} Введите ФИО из кадровой системы и общий dev-пароль — или обычный логин/пароль. {% elif hr_auth_enabled %} Учётная запись HR: можно ввести логин или ФИО (если в базе только один такой сотрудник), и пароль. {% else %} Используйте логин и пароль. {% endif %}

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, msg in messages %}
{{ msg }}
{% endfor %}
{% endif %} {% endwith %}
{% endif %} {% endblock %}