{% if request.GET.keyword|length %}
Showing maps with keyword '{{ request.GET.keyword }}'
{% else %}No maps found with keyword {{ request.GET.keyword }} !
{% endif %}
{% for map in maps %}
{% endfor %}
-
{% if maps.has_previous %}
- prev {% endif %} {% for page_num in maps.paginator.page_range %}
- {{ page_num }} {% endfor %} {% if maps.has_next %}
- next {% endif %}