{% extends "base.html" %} {% block inner_hero_background %}{{ url_for('static', filename='uploads/' + tour.image) }}{% endblock %} {% block inner_hero_title %}{{ tour.title }}{% endblock %} {% block inner_hero_subtitle %}{{ tour.subtitle }}{% endblock %} {% block content %}

Tour Overview

{{ tour.description|safe }}

Tour Itinerary

{% if tour.tour_days %} {% for day in tour.tour_days %}

Day {{ day.day_number }}: {{ day.title }}

{{ day.description|safe }} {% endfor %} {% else %} {{ tour.itinerary|safe }} {% endif %}
{% if tour.inclusions %}

Inclusions

{{ tour.inclusions|safe }}
{% endif %} {% if tour.exclusions %}

Exclusions

{{ tour.exclusions|safe }}
{% endif %} {% if tour.additional_info %}

Additional Information

{{ tour.additional_info|safe }}
{% endif %}

Tour Details

Category: {{ tour.subcategory.parent_category.name }} - {{ tour.subcategory.name }}

Views: {{ tour.views }}

Book This Tour

Ready to experience this amazing tour?

Request a Quote
{% endblock %}