initial commit
This commit is contained in:
18
templates/asuzr/prod_list.html
Normal file
18
templates/asuzr/prod_list.html
Normal file
@@ -0,0 +1,18 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user