{% extends "base.html" %} {% block content %}

{{ category.name }} Tours

{% for tour in tours %}
{% if tour.image_url %} {{ tour.name }} {% endif %}
{{ tour.name }}

{{ tour.description | truncate(100) }}

Duration: {{ tour.duration }} days

Price: ${{ tour.price }}

View Details
{% else %}

No tours available for this category at the moment.

{% endfor %}
{% endblock %}