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/output.html

26 lines
633 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Заготовки на складе</title>
</head>
<body>
<h1>Заготовки на складе</h1>
<!-- Output -->
<table>
<tr>
{% for category in categories %}
<th>{{ category }}</th>
{% endfor %}
</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>
</body>
</html>