{% extends 'base.html' %} {% load djinsight_tags %} {% block title %}Products - djinsight Example{% endblock %} {% block content %}

🛍️ Products

← Home
{% for product in products %}
{{ product.name }}

{{ product.description|truncatewords:15 }}

{{ product.category }} ${{ product.price }}
{% total_views_stat obj=product %} {% unique_views_stat obj=product %}
{% empty %}

No products yet!

Visit the admin panel to create some products.

{% endfor %}
{% if is_paginated %} {% endif %} {% endblock %}