{% extends 'base_theme.html' %} {% load extra_functions thumbnail i18n %} {% block title %}{{ listing.title }} | WILLIAMSMENDEZ.COM{% endblock %} {% block content %}

{{ listing.title }}

{{ listing.get_address }}

{{ listing.price|currency }}


{% for imagen in listing.images.all %} {% thumbnail imagen.image "620x410" crop="center" as bigimage %} {% thumbnail imagen.image "116x90" crop="center" as thumb %}
{{ bigimage.title }}
{{ thumb.title }}
{% endthumbnail %} {% endthumbnail %} {% endfor %}

Características

    {% for feature in listing.get_features %}
  • {{ feature }}
  • {% endfor %}

{% trans "Description" %}

{{ listing.description }}


{% trans "More properties on this area" %}

{% thumbnail listing.agent.image "108x108" crop="center" as imagen_agente %} {{ listing.agent }} {% endthumbnail %}

{{ listing.agent }}
{{ listing.agent.user.email }} {% if listing.agent.phone %}
{% trans "Phone" %}. {{ listing.agente.telefono }}{% endif %} {% if listing.agent.cellphone %}
{% trans "Mobile" %}. {{ listing.agent.cellphone }}{% endif %}

{% trans "Contact agent" %}

{% csrf_token %}
{% for field in form %}
{{ field.name }}: {{ field }} {% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}
{% endblock %}