{% extends "master.html" %} {% load ui %} {% load help %} {% load humanize %} {% load solr %} {% load static %} {% block javascript %} {{ block.super }} {% endblock %} {% block sidebar %} {% var as related_pages %} {"pages": [ {"url": "{% url "solr-search" %}?kw={{ query|urlencode }}", "title": "Back to Explore"} ]} {% endvar %} {{ block.super }}
Keywords
{% endblock %} {% block content-top %} {{ block.super }}

{{ shared.title }} Results

{% endblock %} {% block content %}
{% csrf_token %}
{% if results.records %} {% if pages %}
{% if prev_page %}Previous{% endif %} Page {{ page|intcomma }} of {{ pages|intcomma }} {% if next_page %}Next{% endif %}
{% endif %}
{% for r in results.records %}
{{ r.alt_text }}
{{ r.title }}
{% endfor %}
{% if pages %}
{% if prev_page %}Previous{% endif %} Page {{ page|intcomma }} of {{ pages|intcomma }} {% if next_page %}Next{% endif %}
{% endif %} {% endif %}
{% endblock %}