{% extends 'base.html' %} {% block title %}{{ place.name }} - TouristAI{% endblock %} {% block content %}
{% if place.image_data %} {{ place.name }} {% else %}
{% endif %} {% if place.color_palette %}
{% for color in place.color_palette %}
{% endfor %}
{% endif %}

{{ place.name }}

{{ place.city.name }}, {{ place.city.country }}

{% if place.address %}

{{ place.address }}

{% endif %}
PageRank
{{ place.pagerank_score|floatformat:4 }}
{% for cat in place.categories.all %} {{ cat.name }} {% endfor %}

{{ place.description }}

{% if place.wikipedia_url %} Wikipedia {% endif %}
{% if similar_structural %}

Similar Places in {{ place.city.name }} (based on categories & structure)

{% for sp in similar_structural %}
{% include 'cities/_place_card_small.html' with place=sp.similar_place score=sp.sim_score %}
{% endfor %}
{% endif %} {% if similar_image_same %}

Visually Similar in {{ place.city.name }} (based on images)

{% for sp in similar_image_same %}
{% include 'cities/_place_card_small.html' with place=sp.similar_place score=sp.sim_score %}
{% endfor %}
{% endif %} {% if similar_image_other %}

Visually Similar in Other Cities (based on images)

{% for sp in similar_image_other %}
{% include 'cities/_place_card_small.html' with place=sp.similar_place score=sp.sim_score %}
{% endfor %}
{% endif %}
Back to {{ place.city.name }}
{% endblock %}