From 9770cf8345d47cb086bd386c0d5c0fca165a6d11 Mon Sep 17 00:00:00 2001 From: Marius Peter Date: Fri, 22 Apr 2022 13:24:41 +0200 Subject: First commit! :fire: --- app/templates/modules/catalog.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 app/templates/modules/catalog.html (limited to 'app/templates/modules/catalog.html') diff --git a/app/templates/modules/catalog.html b/app/templates/modules/catalog.html new file mode 100644 index 0000000..857c654 --- /dev/null +++ b/app/templates/modules/catalog.html @@ -0,0 +1,35 @@ + + +{% extends "base.html" %} +{% block title %} + Catalog +{% endblock %} + +{% block content %} + insert module content here. + +

+ Add product to your catalog +

+ + + + + + + + + + + + {% for product in catalog %} + + + + + + + {% endfor %} + +
NamePriceSupplierUpdated
{{ product.name }}{{ product.price }}{{ product.supplier }}{{ product.updated }}
+{% endblock %} -- cgit v1.2.3