23 lines
711 B
HTML
23 lines
711 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Заготовки на складе</title>
|
|
</head>
|
|
<body>
|
|
<button><a href="{{ url_for('logout') }}">Выход</a></button>
|
|
<!-- Input -->
|
|
<h1>Выберите материал</h1>
|
|
<form action="" method="post">
|
|
<select name="material">
|
|
{% for item in materials %}
|
|
<option value="{{ item['material'] }}">{{ item['material'] }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input type="submit" value="Отправить">
|
|
</form>
|
|
<button><a href="{{ url_for('requests_bp.requests') }}">Обратно в меню запросов</a></button>
|
|
</body>
|
|
</html>
|
|
|