{% 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 %}

Hole details — Course par:

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

Tees

{% if tees %}
{% for t in tees %}
{{ t.name }} {% if t.gender %}{{ t.gender }}{% endif %} Slope {{ t.slope }} Rating {{ t.rating }} {% if t.front_slope and t.front_rating %}· F {{ t.front_slope }}/{{ t.front_rating }}{% endif %} {% if t.back_slope and t.back_rating %}B {{ t.back_slope }}/{{ t.back_rating }}{% endif %}
{% if course.holes == 18 %}
{% endif %}
{% 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

{% if course.holes == 18 %}
{% endif %}
{% endblock %}