{% extends 'base/base.html' %} {% load staticfiles %} {% block content %}

Hotel Booking A Luxury Hotel

Here are the best hotel booking sites, including recommendations for international travel and for finding low-priced hotel rooms.

Discover Now

Booking Your Hotel

{% csrf_token %}
1 Person
  • 1 Persons
  • 2 Persons
  • 3 Persons
  • 4 Persons
  • 5 Persons
  • 6 Persons
Rooms

Hotels List

{% if check_in and check_out %}

check-in: {{check_in}}

Check-out: {{check_out}}

Stay: {{duration}} Nights.

{% endif %}
{% for Hotel in Hotels %}

{{ Hotel.Name}}

{{Hotel.Description}}

Size: 30 ft
Capacity: Max persion 5
Bed: King Beds
Services: Wifi, Television, Bathroom,...
{% if user.is_authenticated %} {% if check_in and check_out %} More Details {% else %} More Details {% endif %} {% else %} View {% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}