{% extends parent_template|default:"base.html" %} {% load static %} {% block title %} {{ block.super }} - Products {% endblock %} {% block content %} {% block styles %} {% endblock %} {% if error %}

{{error}}

{% else %}

Products:

{% for product in products %} {% include 'app/product/product_detail.html' with product=product %} {% empty %}

Currently no products available.

{% endfor %}
{% endif %} {% endblock %}