| Price | Living Area | Bedrooms | Bathrooms | Year Built | City |
|---|---|---|---|---|---|
| {% if house.price is defined and house.price not in [none, ''] %} ${{ "{:,.0f}".format(house.price|float) }} {% else %} N/A {% endif %} | {% if house.livingArea is defined and house.livingArea not in [none, ''] %} {{ "{:,.0f}".format(house.livingArea|float) }} sqft {% else %} N/A {% endif %} | {% if house.bedrooms is defined and house.bedrooms not in [none, ''] %} {{ "{:,.0f}".format(house.bedrooms|float) }} {% else %} N/A {% endif %} | {% if house.bathrooms is defined and house.bathrooms not in [none, ''] %} {{ "{:,.0f}".format(house.bathrooms|float) }} {% else %} N/A {% endif %} | {% if house.yearBuilt is defined and house.yearBuilt not in [none, ''] %} {{ "{:.0f}".format(house.yearBuilt|float) }} {% else %} N/A {% endif %} | {% if house.city is defined and house.city not in [none, ''] %} {{ house.city }} {% else %} N/A {% endif %} |
${{ "{:,.0f}".format(prediction|float) }}
{% endif %}