{% extends 'ums/main.html' %} {% load static %} {% block title %} Hotels {% endblock %} {% block content %}

Hotels

{% for hotel in allHotels %} {% endfor %}
Hotel Name Hotel Fare (NPR) Actions
{{hotel.hotelName}} {{hotel.fare}}
{% include 'tour/add_hotel.html' %}
{% endblock %}