{% extends 'base.html' %} {% block content %}

Jmbo-search

{% csrf_token %} {{ form.as_table }}
 
{% if object_list %}

Results

{% for result in page_obj.object_list %}

{{ result.object.title }}

{% empty %}

No results found.

{% endfor %} {% if page.has_previous or page.has_next %}
{% if page.has_previous %}{% endif %}« Previous{% if page.has_previous %}{% endif %} | {% if page.has_next %}{% endif %}Next »{% if page.has_next %}{% endif %}
{% endif %} {% endif %}
{% endblock %}