{% if results %}
{{ results|length }} result{{ results|length|pluralize }} found {% if query %} for "{{ query }}" {% endif %}
{% for result in results %}
{% if result.type == 'park' %}
{% elif result.type == 'ride' %}
{% elif result.type == 'operator' %}
{% elif result.type == 'manufacturer' %}
{% else %}
{% endif %}

{{ result.title }}

{{ result.type|title }}
{% if result.description %}

{{ result.description|truncatewords:15 }}

{% endif %}
{% if result.location %}
{{ result.location }}
{% endif %} {% if result.rating %}
{{ result.rating|floatformat:1 }}
{% endif %} {% if result.count %}
{% if result.type == 'park' %} {{ result.count }} ride{{ result.count|pluralize }} {% elif result.type == 'operator' %} {{ result.count }} park{{ result.count|pluralize }} {% elif result.type == 'manufacturer' %} {{ result.count }} ride{{ result.count|pluralize }} {% endif %}
{% endif %} {% if result.year %}
{{ result.year }}
{% endif %}
{% endfor %}
{% if results|length >= 5 %}
View all search results →
{% endif %} {% else %}

No results found

{% if query %}

No results for "{{ query }}"

{% else %}

Try searching for parks, rides, or locations

{% endif %}
Try:
{% endif %}