Files
record/templates/asuzr/prod_list.html
2015-04-19 21:57:18 +05:00

18 lines
336 B
HTML

<html>
<head>
<title>Типы изделий</title>
<meta content="">
<style></style>
</head>
<body>
{% if product_list %}
<ul>
{% for prod in product_list %}
<li>{{ prod.name }}</li>
{% endfor %}
</ul>
{% else %}
<p>Список изделий пуст</p>
{% endif %}
</body>
</html>