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

Search Results

{% if request.GET.q %} Results for "{{ request.GET.q }}" {% else %} Enter a search term above to find parks, rides, and more {% endif %}

{% if request.GET.q %}

Theme Parks

{% for park in parks %}
{% if park.photos.exists %} {{ park.name }} {% else %}
No image available
{% endif %}

{{ park.name }}

{{ park.location }}

{{ park.rides.count }} attractions {% if park.average_rating %}
{{ park.average_rating|floatformat:1 }}/10
{% endif %}
{% empty %}

No parks found matching your search.

{% endfor %}

Rides & Attractions

{% for ride in rides %}
{% if ride.photos.exists %} {{ ride.name }} {% else %}
No image available
{% endif %}

{{ ride.name }}

at {{ ride.park.name }}

{{ ride.get_category_display }} {% if ride.average_rating %}
{{ ride.average_rating|floatformat:1 }}/10
{% endif %}
{% empty %}

No rides found matching your search.

{% endfor %}

Park Operators

{% for operator in operators %}

{{ operator.name }}

{% if operator.headquarters %}

{{ operator.headquarters }}

{% endif %}
{{ operator.operated_parks.count }} parks operated
{% empty %}

No operators found matching your search.

{% endfor %}

Property Owners

{% for property_owner in property_owners %}

{{ property_owner.name }}

{% if property_owner.headquarters %}

{{ property_owner.headquarters }}

{% endif %}
{{ property_owner.owned_parks.count }} properties owned
{% empty %}

No property owners found matching your search.

{% endfor %}
{% endif %}
{% endblock %}