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/Queries/templates/zapros_menu.html
2024-10-22 23:35:49 +03:00

16 lines
408 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Запросы</title>
</head>
<body>
<h1>Выберите вариант запроса</h1>
<a href="{{ url_for('logout') }}">Выход</a>
<nav class="menu">
{% for point in options %}
<a href="{{ url_for(point['url']) }}">{{ point['name'] }}</a>
{% endfor %}
</nav>
</body>
</html>