Сформировано меню запросов
This commit is contained in:
16
App/Queries/templates/zapros_menu.html
Normal file
16
App/Queries/templates/zapros_menu.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user