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

Manage Tours

{% for category, tours in [('Day Tours', day_tours), ('Multi-Day Tours', multi_day_tours), ('Special Tours', special_tours)] %}

{{ category }}

Add {{ category[:-1] }} {% for tour in tours %} {% else %} {% endfor %}
Title Actions
{{ tour.title }} Edit
{{ form.csrf_token }}
No tours available.
{% endfor %} {% endblock %}