initial commit

This commit is contained in:
Anastasia
2015-04-19 21:57:18 +05:00
parent c35ea95a33
commit f0a9db1c86
23 changed files with 456 additions and 0 deletions

View 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>