{% extends 'base_site_one.html' %} {% load i18n %} {% block bodyclass %}bg-white{% endblock %} {% block breadcrumb_items %} {% if self.get_ancestors|length > 1 %} {% for p in self.get_ancestors %} {% if p.is_root is False %} {% endif %} {% endfor %} {% endif %} {% endblock %} {% block page_title %}

{% trans "Search Venue and Activity" %}

{% endblock page_title %} {% block page_summary %} {% trans "Explore and join event and activity by CorePlus trusted partners." %} {% include 'search/search_form.html' %} {% endblock page_summary %} {% block main_column %} {% block search_results %} {% if query %}

Results

{% for result in page.object_list %}
{{ result.name }}
{{ result.description|safe }}
{% 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 %} {% else %} {# Show some example queries to run, maybe query syntax, something else? #} {% endif %} {% endblock search_results %} {% endblock %}