52 lines
2.0 KiB
HTML
52 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="ru" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Количество заготовок на складе</title>
|
|
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://getbootstrap.com/docs/5.3/assets/css/docs.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
|
|
</head>
|
|
<body class="p-3 m-0 border-0">
|
|
<header>
|
|
<div class="row flex-nowrap justify-content-between pb-5">
|
|
<div class="col-1 pt-1"></div>
|
|
<div class="col-10 text-center">
|
|
<h1 class="display-5 fw-bold">Количество заготовок на складе</h1>
|
|
</div>
|
|
<div class="col-1 d-flex justify-content-end align-items-center">
|
|
<a href="{{ url_for('logout') }}"><button class="btn btn-danger">Выход</button></a>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Input -->
|
|
<main class="flex-shrink-0">
|
|
<div class="form py-5">
|
|
<form action="" method="post" style="display: inline-block;">
|
|
<label>Выберите материал</label>
|
|
<select class="form-select" name="material">
|
|
{% for item in materials %}
|
|
<option value="{{ item["name"] }}">{{ item["name"] }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<button type="submit" class="btn btn-primary">Отправить</button>
|
|
</form>
|
|
<div class="d-flex justify-content-center mt-5">
|
|
<a href="{{ url_for('requests_bp.requests') }}"><button class="btn btn-secondary">Обратно в меню запросов</button></a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
|
|
</body>
|
|
</html>
|
|
|