This repository has been archived on 2025-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RIS/App/Queries/templates/sklad_zapros.html
Anton Kamalov 339a55f8da Запрос по материалу заготовки
Доработать возвращение в меню запросов
2024-10-22 00:09:35 +03:00

42 lines
1003 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
</head>
<body>
<!-- Input -->
<h1>Hello World</h1>
{% if status %}
<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 -->
{% if result_table %}
<table>
<tr>
{% for item in result_table[0] %}
<th>{{ item }}</th>
{% endfor %}
</tr>
{% for item in result_table[1] %}
<tr>
<td>{{ item['material'] }}</td>
<td>{{ item['weight'] }}</td>
<td>{{ item['price'] }}</td>
<td>{{ item['count'] }}</td>
</tr>
{% endfor %}
</table>
{% endif %}
{% endif %}
</body>
</html>