{% extends "administrator/base.html" %} {% load static i18n base_tag crispy_forms_tags management_tag humanize %} {% block title %}{{page_title}}{% endblock %} {% block page_title %}
{% if property.status == 'sold' %} Property Sold List {% else %} Property Sale List {% endif %}

{{property.address.full}}

{% endblock page_title %} {% block content %}

{{property.address.full}}

{{property.status}}

{{property.list_price|floatformat:"-2"|intcomma}}
{% if property.list_price_max %}Max: {{property.list_price_max|floatformat:"-2"|intcomma}}
{% endif %} {% if property.list_price_min %}Min: {{property.list_price_min|floatformat:"-2"|intcomma}}
{% endif %}

{{property.list_date}}

{{property.estimate_price|floatformat:"-2"|intcomma}}

{{property.listing_id}}

Data Source:
{{property.info_origin}}

{% for link in property.external_links %} {% if forloop.first %}External Link:
{% endif %} {{link.title}} {% if not forloop.last %} | {% endif %} {% endfor %}

{% for virtual_tours_url in property.virtual_tours_urls %} {% if forloop.first %}Virtual: {% endif %} Virtual Tour {{forloop.counter}} {% if not forloop.last %} | {% endif %} {% endfor %}

DIRECTION FROM OFFICES

{% for direction in property.address.direction_from_offices %}
{% endfor %}

{{property.beds}}

{{property.baths}}

{{property.garages|default:0}}

{{property.stories|default:0}}


{{property.sqft}} sqft

{{property.lot_sqft}} sqft

{{property.type}}

{{property.year_built}}

{{property.description|safe}}

{{property.data_source.name}}

{{property.data_source.group}}

{{property.data_source.phone}}

{{property.data_source.url}}

{{property.data_source.description}}

PROPERTY HISTORY

{% for history in property.property_history %} {% endfor %}
event name date source name price price sqft
{{history.event_name}} {{history.date}} {{history.source_name}} {{history.price|floatformat:"-2"|intcomma}} {{history.price_sqft|floatformat:"-2"|intcomma}}

TAX HISTORY

{% for history in property.tax_history %} {% endfor %}
year tax total assessment
{{history.year}} {{history.tax|floatformat:"-2"|intcomma}} {{history.assessment_value|floatformat:"-2"|intcomma}}
{% endblock content %} {% block modal %} {% endblock modal %} {% block third_party %} {% include "base/load_datatable.html" %} {% endblock third_party %}