{% extends 'base.html' %} {% block head%} Recommneder {% endblock %} {% block body%} {% if destinations|length < 1 %}

There are no Destinations

{% else %}
{% for i in range(destinations|length) %} {% endfor %}
id user city number of visits
{{destinations[i].id}} {{destinations[i].user}} {{destinations[i].city}} {{destinations[i].number_of_visits}}
{% endif %}
{% endblock %}