{% extends "hostel_app/base.html" %} {% load staticfiles %} {% block body_block %}
Hostel List
{% if hostel_list %}
{% for hostel in hostel_list %}
{{hostel.hostel_name}}
{% endfor %}
{% endif %} {% endblock %}