{% extends "django_classified/_base.html" %} {% load classified %} {% load humanize %} {% load i18n %} {% load thumbnail %} {% block title %}{{ object.title }}{% endblock title %} {% block meta_description %}{{ object.description }}{% endblock meta_description %} {% block meta_keywords %}{{ object.get_keywords }}{% endblock meta_keywords %} {% block meta_og %} {% for img in object.image_set.all %} {% thumbnail img.file "x800" as im %} {% endthumbnail %} {% endfor %} {% endblock %} {% block body %}

{% if object.area %} {{ object.area }} >  {% endif %} {{ object.group }}

{% include "django_classified/admin_toolbar.inc.html" %}

{{ object.title }}

{{ object.price|currency }}

{{ object.description|linebreaks }}
{% if object.iamge_count %}
{% for img in object.image_set.all %} {% thumbnail img.file "150x150" crop="center" as im %} {{ object.title }} {% endthumbnail %} {% endfor %}
{% endif %}
{% if object.contact_phone %}

{% if DCF_LOGIN_TO_CONTACT and not user.is_authenticated %} {% trans "Please" %} {% trans "login" %} {% trans "to see contact information." %} {% else %} {% trans "Contact phone" %}: {{ object.contact_phone }} {% endif %}
{% endif %}
{% for item in object.related_items %} {% if forloop.first %}
{% endif %}
{% if item.featured_image %} {% thumbnail featured_image.file "70x70" crop="center" as im %} {{ item.title }} {% endthumbnail %}
{% endif %} {{ item.title|truncatewords:3 }}
{% endfor %}
{% endblock %}