{% extends 'ecom/template.html' %} {% load crispy_forms_tags %} {% block content %}
Products {% for product in products %}
{{ product.name }}   $ {{ product.cost }}
{% csrf_token %} {{ cart_form | crispy }}
{% endfor %}
{% if products.has_previous %} « First Previous {% endif %} {% if products.has_next %} Next Last » {% endif %}
{% endblock %}