{% extends "base.html" %} {% block title %}Search Courses – Skins & Pins{% endblock %} {% block content %}
Users Courses Games
← Courses
{% if not api_configured %}
GOLF_COURSE_API_KEY is not configured. Add it to your .env file to enable course search. Get a key at golfcourseapi.com.
{% endif %}
{% if error %}
{{ error }}
{% endif %} {% if q and results is not none %} {% if results %}

{{ results | length }} result{{ 's' if results | length != 1 else '' }} for "{{ q }}"

{% for c in results %} {% set loc = c.location or {} %} {% if loc.state and loc.country == 'United States' %} {% set location_str = (loc.city or '') + ', ' + loc.state %} {% elif loc.city and loc.country %} {% set location_str = loc.city + ', ' + loc.country %} {% else %} {% set location_str = '' %} {% endif %} {% endfor %}
ClubCourseLocation
{{ c.club_name or '—' }} {% if c.course_name and c.course_name != c.club_name %}{{ c.course_name }}{% else %}—{% endif %} {{ location_str or '—' }}
{% else %}
🔍

No courses found for "{{ q }}".

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