{% extends "base.html" %} {% block title %}Attraction Finder - Travel App{% endblock %} {% set page = 'map_page' %} {% block head %} {% endblock %} {% block content %}

Find Attractions

{% if places %}

Results for {{ city }}

{% for place in places %}
{{ place.name }}

{{ place.name }}

{{ place.vicinity or place.formatted_address }}

Rating: {{ place.rating or 'N/A' }}

{% endfor %}
{% elif city %}

No attractions found. Try another city or filter.

{% endif %}
{% endblock %}