{% extends "template.html" %} {% block title %}Zomato{% endblock %} {% block head %} {{ super() }} {% endblock %} {% block content %}

Zomato

Categories
{% for category in categories %}
{{ category['categories']['name'] }} {{ category['categories']['name'] }}
{% endfor %}
Establishments
{% for establishment in establishments %}
{{ establishment['establishment']['name'] }}
{{ establishment['establishment']['name'] }}
{% endfor %}
Cuisines
{% for cuisine in cuisines %}
{{ cuisine['cuisine']['cuisine_name'] }}
{{ cuisine['cuisine']['cuisine_name'] }}
{% endfor %}
Collections
{% for collection in collections %}
{{ collection['collection']['title'] }} {{ collection['collection']['title'] }}
{% endfor %}
Show All Restaurants
Prev Next
{% for restaurant in restaurants %} {% endfor %}
Quick Bites

{{ restaurant['restaurant']['name'] }}

American Food House, Bodakdev
{{ restaurant['restaurant']['location']['address'] }}
{{ restaurant['restaurant']['user_rating']['aggregate_rating'] }}{{ restaurant['restaurant']['user_rating']['votes'] }}
CUISINES COST FOR TWO:
{{ restaurant['restaurant']['cuisines'] }} {{ restaurant['restaurant']['average_cost_for_two'] }}
{% if restaurant['restaurant']['has_online_delivery'] %} {% endif %} {% if restaurant['restaurant']['is_delivering_now'] %} {% endif %} {% if restaurant['restaurant']['is_table_reservation_supported'] %} {% endif %} {% if restaurant['restaurant']['has_table_booking'] %} {% endif %}
{% endblock %}