25 lines
853 B
HTML
25 lines
853 B
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Авторизация</title>
|
||
<link href="/static/css/auth.css" type="text/css" rel="stylesheet">
|
||
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
|
||
</head>
|
||
<body>
|
||
<h1>Новая накладная</h1>
|
||
<form action="" method="post">
|
||
{% for item in items %}
|
||
<div class="card">
|
||
<p>{{ item['name'] }}</p>
|
||
<p>В наличии {{ item['count'] }}</p>
|
||
<input type="number" name="{{ item['id'] }}" value="0" min="0">
|
||
</div>
|
||
{% endfor %}
|
||
<input type="submit" value="Создать накладную">
|
||
</form>
|
||
<div class="return">
|
||
<a href="{{ url_for('index') }}"><button>Главное меню</button></a>
|
||
</div>
|
||
</body>
|
||
</html> |