This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/templates/main_menu.html
Anton Kamalov efa3c0737b Главное меню
Но список запросов пока представляет собой просто один запрос
2024-10-22 23:02:46 +03:00

20 lines
536 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Главное меню</title>
</head>
<body>
<h1>Hello World</h1>
<nav class="menu">
{% if 'role' in ses %}
<a href="{{ url_for('logout') }}">Выход</a>
{% else %}
<a href="{{ url_for('auth_bp.auth') }}">Авторизация</a>
{% endif %}
{% for point in menu %}
<a href="{{ url_for(point['url']) }}">{{ point['name'] }}</a>
{% endfor %}
</nav>
</body>
</html>