{% extends "base.html" %} {% load static from staticfiles %} {% load bootstrap %} {% block template_page_name %} - Search{% endblock %} {% block headers %} {% endblock %} {% block content %} {% if not query %}
{{ form|bootstrap }}
{% else %}

Search

Results matching "{{ query }}"


Filter


{% if not facets.fields %}
No applicable filters.

{% else %} {% if facets.fields.exact_user %}

By User

{% for datum in facets.fields.exact_user %} {% if datum.0 %} {{ datum.1}}{{ datum.0 }} {% endif %} {% endfor %}
{% endif %} {% if facets.fields.exact_manager %}

By Manager

{% for datum in facets.fields.exact_manager %} {% if datum.0 %} {{ datum.1}}{{ datum.0 }} {% endif %} {% endfor %}
{% endif %} {% if facets.fields.exact_location %}

By Location

{% for datum in facets.fields.exact_location %} {% if datum.0 %} {{ datum.1}}{{ datum.0 }} {% endif %} {% endfor %}
{% endif %} {% if facets.fields.exact_status %}

By Member Status

{% endif %} {% endif %}

{% for result in page.object_list %} {% if forloop.counter > 1 %}
{% endif %}
{% if result.object.is_userprofile %} {% include "search/userprofile.html" %} {% elif result.object.is_thread %} {% include "search/thread.html" %} {% elif result.object.is_message %} {% include "search/message.html" %} {% elif result.object.is_manager %} {% include "search/manager.html" %} {% elif result.object.is_request %} {% include "search/request.html" %} {% elif result.object.is_response %} {% include "search/response.html" %} {% elif result.object.is_announcement %} {% include "search/announcement.html" %} {% elif result.object.is_event %} {% include "search/event.html" %} {% endif %}
{% 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 %}