{% extends "base.html" %} {% block title %}Member Map - {{ club.name }}{% endblock %} {% block content %} {% include "club_ribbon.html" %}
{% if not club.latitude or not club.longitude %}
The club location has no coordinates set. Set the club address to show the club marker.
{% endif %} {{ members_json|json_script:"club-members-data" }} {% if google_maps_api_key %} {% else %}
Club member maps are unavailable until a Google Maps API key is configured.
{% endif %} {% endblock %}