{% extends "base.html" %} {% block title %}Hotels Search{% endblock %} {% block content %}

Find Hotels

{% if city_code %}

Hotels in {{ city_code }}

{% endif %} {% if hotels %}
{% for hotel in hotels %}
{{ hotel.name }}

{{ hotel.name }}

{{ hotel.address }}

{% if hotel.rating %}

Rating: {{ hotel.rating }}

{% endif %}
{% endfor %}
{% elif city_code %}

No hotels found. Please try another city code.

{% endif %}
{% endblock %}