{% extends "base.html" %} {% block title %}{{ prop.title }} - NexHome{% endblock %} {% block content %}
{% if primary_image %} {{ prop.title }} {% else %}
{% endif %} {% if prop.is_featured %} Featured {% endif %} {% if prop.status == 'sold' %} Sold {% elif prop.status == 'pending' %} Pending {% endif %} {% if user %}
{% endif %}
{% if images|length > 1 %}
{% for img in images %} Property image {{ loop.index }} {% endfor %}
{% endif %}

{{ prop.title }}

${{ "{:,}".format(prop.price) }}

{{ prop.address }}, {{ prop.city }}, {{ prop.state }} {{ prop.zip_code }}

{{ prop.bedrooms }}
Bedrooms
{{ prop.bathrooms }}
Bathrooms
{{ "{:,}".format(prop.area_sqft) }}
Sq Ft

Description

{{ prop.description }}

Property Details

Property Type {{ prop.property_type }}
Year Built {{ prop.year_built or 'N/A' }}
Status {{ prop.status }}
Listed {{ prop.created_at.strftime("%B %d, %Y") }}

Contact Seller

{% if user %}
{% else %} Login to Save {% endif %}
{% if prop.contact_email %}
Email
{{ prop.contact_email }}
{% endif %} {% if prop.contact_phone %}
Phone
{{ prop.contact_phone }}
{% endif %} {% if not prop.contact_email and not prop.contact_phone %}
{{ prop.owner.username[0]|upper }}
{{ prop.owner.username }}
{% if prop.owner.full_name %}
{{ prop.owner.full_name }}
{% endif %}
{% endif %}
{% if user.id == prop.owner_id %}
Edit Listing
{% endif %}

Listed By

{{ prop.owner.username[0]|upper }}
{{ prop.owner.username }}
{% if prop.owner.full_name %}
{{ prop.owner.full_name }}
{% endif %}
{% endblock %}