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