{% extends "shop/base.html" %} {% load url from future %} {% block body %}

Product list:


{% for object in object_list %} {{object.get_name}}
{{object.slug}}
{{object.short_description}}
{{object.long_description}}
{{object.active}}
{{object.date_added}}
{{object.last_modified}}
{{object.unit_price}}
{% if object.category %} {{object.category.name}}
{% else %} (Product is at root category)
{% endif %}
{% endfor %} {% endblock %}