{% extends 'base/base.html' %} {% load static %} {% block title %}Nearby Locations - ThrillWiki{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Nearby Locations

{% if center_location %} Locations near {{ center_location.name }} {% elif center_lat and center_lng %} Locations near {{ center_lat|floatformat:4 }}, {{ center_lng|floatformat:4 }} {% else %} Find locations near a specific point {% endif %}

Find Nearby Locations

Searching locations...
{% if center_lat and center_lng %}

Map View

{{ nearby_locations|length }} location{{ nearby_locations|length|pluralize }} found

Nearby Locations

{% if nearby_locations %}
{% for location in nearby_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 %} {{ location.distance|floatformat:1 }} miles
{% if location.type == 'park' and location.ride_count %}
{{ location.ride_count }} ride{{ location.ride_count|pluralize }}
{% elif location.type == 'ride' and location.park_name %}
{{ location.park_name }}
{% endif %}
{% endfor %}
{% else %}

No locations found within {{ radius }} miles.

Try increasing the search radius or adjusting the location types.

{% endif %}
{% else %}

Find Nearby Locations

Enter a location above to discover theme parks, rides, and companies in the area.

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