35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Поставки заготовок</title>
|
||
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
|
||
</head>
|
||
<body>
|
||
<div class="logout">
|
||
<a href="{{ url_for('logout') }}"><button>Выход</button></a>
|
||
</div>
|
||
<!-- Input -->
|
||
<h1>Поставки заготовок</h1>
|
||
<div class="form">
|
||
<form action="" method="post">
|
||
<p>Выберите материал</p>
|
||
<select name="material">
|
||
{% for item in materials %}
|
||
<option value="{{ item['material'] }}">{{ item['material'] }}</option>
|
||
{% endfor %}
|
||
</select>
|
||
<p>Выберите даты:</p>
|
||
<p>с <input type="date" name="date_from" required min="2000-01-01" max="2024-12-31" id="date_from"></p>
|
||
<p>по <input type="date" name="date_to" required min="2000-01-01" max="2024-12-31" id="date_to"></p>
|
||
<input type="submit" value="Отправить">
|
||
</form>
|
||
<div class="return">
|
||
<a href="{{ url_for('requests_bp.requests') }}"><button>Обратно в меню запросов</button></a>
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|
||
|