31 lines
997 B
HTML
31 lines
997 B
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">
|
||
<p>Выберите поставщика</p>
|
||
<form action="" method="post">
|
||
<select name="seller">
|
||
{% for item in sellers %}
|
||
<option value="{{ item }}">{{ item }}</option>
|
||
{% endfor %}
|
||
</select>
|
||
<input type="submit" value="Отправить">
|
||
</form>
|
||
<div class="return">
|
||
<a href="{{ url_for('requests_bp.requests') }}"><button>Обратно в меню запросов</button></a>
|
||
</div>
|
||
</div>
|
||
</body>
|
||
</html>
|
||
|