{% extends "base.html" %} {% block title %}Edit Course – Skins & Pins{% endblock %} {% block content %}
{% if request.query_params.get('success') %}
{{ request.query_params.get('success') }}
{% endif %} {# ── Course info + hole pars ── #}

Course info

{% if errors and errors.name %}
{{ errors.name }}
{% endif %}
{% set course_par = holes | sum(attribute='par') %}

Hole details — Course par: {{ course_par }}

{% for h in holes %}
{{ h.hole_number }}
{% endfor %}
{# ── Tees ── #}

Tees

{% if tees %}
{% for t in tees %}
{{ t.name }} Slope {{ t.slope }} Rating {{ t.rating }}
{% endfor %}
{% else %}

No tees yet. Add at least one tee so players can start a game on this course.

{% endif %} {# Add tee form #}

Add tee

{% endblock %}