{% extends "shop/base.html" %} {% block body %}

Product detail:

{{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 %}
{% csrf_token %}
{% endblock %}