{% extends 'base.html' %} {% block title %}{{ city.name }} - TouristAI{% endblock %} {% block content %}

{{ city.name }}

{{ city.country }}

{{ city.description }}

{% if city.image_data %} {{ city.name }} {% endif %}

Places of Interest {{ places.count }}

{% for place in places %}
{% if place.image_data %} {{ place.name }} {% else %}
{% endif %}
{{ place.pagerank_score|floatformat:4 }}
{% if place.image_data and place.color_palette %}
{% for color in place.color_palette %}
{% endfor %}
{% endif %}
{{ place.name }}

{{ place.description|truncatewords:15 }}

{% empty %}
No places found matching your filters.
{% endfor %}
{% endblock %}