{% extends "webui/search/base.html" %} {% load bootstrap_pagination webui_tags %} {% block title %}Search Results{% endblock %} {% block breadcrumbs %}{{ block.super }}
  • Results
  • {% endblock breadcrumbs %} {% block content %}
    {% if error_message %}

    {{ error_message }}

    {% endif %}

    {% if terms %}
    Terms {{ terms.field }}: {{ terms.term }}
    {% endif %} {% if page.object_list %}
    {{ paginator.count }} items
    {% endif %}
    {% if page.object_list %} {% if paginator.num_pages > 1 %} {% bootstrap_paginate page range=10 show_first_last="true" %} {% endif %} {% for hit in page.object_list %} {% if hit.model == "collection" %}{% collection hit %}{% endif %} {% if hit.model == "entity" %}{% entity hit %}{% endif %} {% if hit.model == "file" %}{% file hit %}{% endif %} {% endfor %} {% if paginator.num_pages > 1 %} {% bootstrap_paginate page range=10 show_first_last="true" %} {% endif %} {% endif %}
    {% endblock content %}