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

Explore Cities

Discover top places of interest powered by AI recommendations

{% for city in cities %}
{% if city.image_data %} {{ city.name }} {% else %}
{% endif %}
{{ city.name }}

{{ city.country }}

{{ city.description|truncatewords:20 }}

{% empty %}
No cities found. Run the data collector to populate the database.
{% endfor %}
{% endblock %}