{% extends "base.html" %} {% block content %}

Store

All {% for c in categories %} {{ c.name }} {% endfor %}
{% if q %}
Search: “{{ q }}” — {{ page.paginator.count }} result(s)
{% endif %}
{% for p in page.object_list %}
{% if p.thumbnail %} {{ p.title }} {% else %}
No Image
{% endif %}
{{ p.category.name }} ★ {{ p.rating|floatformat:1 }}
$ {{ p.price }}
{% csrf_token %}
{% empty %}

No products.

{% endfor %}
{% endblock %}