{% extends 'base/base.html' %} {% load static %} {% block title %}Location Search Results - ThrillWiki{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Search Results

{% if query %} Search results for "{{ query }}" {% else %} Browse all locations in ThrillWiki {% endif %}

{% if 'park' in location_types %}
{% endif %}
Clear All
{% if locations %}

{{ paginator.count }} location{{ paginator.count|pluralize }} found

{% if query %} Showing results for "{{ query }}" {% endif %} {% if location_types %} • Types: {{ location_types|join:", "|title }} {% endif %} {% if request.GET.country %} • Country: {{ request.GET.country }} {% endif %} {% if request.GET.state %} • State: {{ request.GET.state }} {% endif %}

Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }}
{% endif %}
{% if locations %}
{% for location in locations %}

{{ location.name }}

{{ location.formatted_location|default:"Location not specified" }}

{% if location.type == 'park' %} Park {% elif location.type == 'ride' %} Ride {% elif location.type == 'company' %} Company {% endif %}
{% if location.type == 'park' %}
{% if location.status %}
{% if location.status == 'OPERATING' %} Operating {% elif location.status == 'CLOSED_TEMP' %} Temporarily Closed {% elif location.status == 'CLOSED_PERM' %} Permanently Closed {% elif location.status == 'UNDER_CONSTRUCTION' %} Under Construction {% elif location.status == 'DEMOLISHED' %} Demolished {% endif %}
{% endif %}
{% if location.operator %} {{ location.operator }} {% endif %}
{% if location.ride_count %}
{{ location.ride_count }} ride{{ location.ride_count|pluralize }}
{% endif %} {% if location.average_rating %}
{{ location.average_rating|floatformat:1 }}/10
{% endif %}
{% elif location.type == 'ride' %}
{% if location.park_name %}
{{ location.park_name }}
{% endif %} {% if location.manufacturer %}
{{ location.manufacturer }}
{% endif %} {% if location.opening_date %}
Opened {{ location.opening_date.year }}
{% endif %}
{% elif location.type == 'company' %}
{% if location.company_type %}
{{ location.get_company_type_display }}
{% endif %} {% if location.founded_year %}
Founded {{ location.founded_year }}
{% endif %}
{% endif %}
View Details {% if location.latitude and location.longitude %} {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %}
Showing {{ page_obj.start_index }}-{{ page_obj.end_index }} of {{ paginator.count }} results
{% if page_obj.has_previous %} {% endif %} {% for num in page_obj.paginator.page_range %} {% if page_obj.number == num %} {{ num }} {% elif num > page_obj.number|add:'-3' and num < page_obj.number|add:'3' %} {{ num }} {% endif %} {% endfor %} {% if page_obj.has_next %} {% endif %}
{% endif %} {% else %}

No locations found

{% if query %} No results found for "{{ query }}". Try adjusting your search or filters. {% else %} No locations match your current filters. Try adjusting your search criteria. {% endif %}

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}