{% extends 'base_site.html' %} {% load static i18n products_tags widget_tweaks routers_tags thumbnail %} {% load comments %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% for object in object_list %} {% object_url 'website' "simpel_products.Product" action="inspect" pk=object.id as inspect_url %}
{% if object.thumbnail.url %} {% else %} {% endif %}

{{ object.name }}

{{ object.opts.verbose_name }} {% if object.category %} {{ object.category }} {% endif %} {% if object.tags.count %} {% for tag in tags %} {{ object.tag }} {% endfor %} {% endif %} {% get_comment_count for object as comment_count %} {{ comment_count }} comment{{ comment_count|pluralize }}
{{ object.description|truncatechars:120 }}
{{ object.estimation_price|currency }}
{% trans "Inspect" %} {% object_url 'website' 'simpel_shop.CartItem' action='add_item' pk=object.id as cart_url %} {% if user.is_authenticated and cart_url %} {% trans "Add To Cart" %} {% endif %}
{% empty %} {% include 'includes/noresults.html' %} {% endfor %} {% if is_paginated %} {% include 'includes/pagination.html' %} {% endif %}
{% include 'website/product/filter.html' %}
{% endblock %}