{% extends 'base.html' %} {% block title %}Home{% endblock %} {% block content %}

Available Listings

{% for listing in listings %}
{% set listing_image = listing.images|selectattr('listing_id', 'equalto', listing.id)|list %} {% if listing_image|length > 0 %} {% endif %}
{{ listing.title }}

{{ listing.description }}

Book Now
{% endfor %}
{% endblock %}