42 lines
1.1 KiB
HTML
42 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Заготовки на складе</title>
|
||
</head>
|
||
<body>
|
||
{% if status %}
|
||
<!-- 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>
|
||
{% else %}
|
||
<!-- Output -->
|
||
<h1>Заготовки на складе</h1>
|
||
<table>
|
||
<tr>
|
||
<th>Материал</th>
|
||
<th>Вес</th>
|
||
<th>Цена</th>
|
||
<th>Количество</th>
|
||
</tr>
|
||
{% for item in items %}
|
||
<tr>
|
||
<td>{{ item['material'] }}</td>
|
||
<td>{{ item['weight'] }}</td>
|
||
<td>{{ item['price'] }}</td>
|
||
<td>{{ item['count'] }}</td>
|
||
</tr>
|
||
{% endfor %}
|
||
</table>
|
||
{% endif %}
|
||
</body>
|
||
</html>
|
||
|