{% extends 'store/Main.html' %} {% load static %} {% block content %}
{% for product in products %}
{{product.name}}

Buy

${{product.price}}

{% endfor %}

{% if products.has_previous %} previous {% endif %} {% if products.has_next %} Next {% endif %} {% endblock content %}