{% set isProtected = house.isProtected %}
{% if house.showSoldPrice %} ${{ isProtected ? '****' : house.soldPrice | number_format(0, '.', ',')}} ${{ isProtected ? '****' : house.price | number_format(0, '.', ',')}} {% else %} ${{ isProtected ? '****' : house.price | number_format(0, '.', ',')}} {% endif %} {% if house.showSoldPrice and house.priceChange and not isProtected %} {% if house.priceTrend == 'up'%} {% else %} {% endif %} {{ (house.priceChangePercent * 100) | abs | number_format(1) ~ '%' }} {% endif %}
{% else %}${{ isProtected ? '****' : house.price | number_format(0, '.', ',')}}
{% endif %}{% if house.bedrooms > 0 %} {{ isProtected ? '***': house.bedrooms }} {{ house.bedrooms == 1 ? 'Bed':'Beds' }} {% endif %} {% if house.bathrooms > 0 %} {{ isProtected ? '***': house.bathrooms }} {{ house.bedrooms == 1 ? 'Bath':'Baths' }} {% endif %} {% if house.area > 0 %} {{ isProtected ? '***': house.area | number_format(house.decimal, '.', ',')}} {{ house.unit }} {% endif %}
{{ isProtected ? 'Address Not Disclosed' : house.address }}
{% if house.showMls %}{{ house.mlsOrg.cardTemplate | raw }}