{% extends "base.html" %} {% block title %} Catalog {% endblock %} {% block content %} insert module content here.

Add product to your catalog

{% for product in catalog %} {% endfor %}
Name Price Supplier Updated
{{ product.name }} {{ product.price }} {{ product.supplier }} {{ product.updated }}
{% endblock %}