{% extends "base.html" %} {% load crispy_forms_tags bap_filters membership_tags static %} {% block title %}{{ club.name }}{% endblock %} {% block content %} {% include "club_ribbon.html" %} {% if club.description %}
{{ club.description|safe }}
{% endif %} {% if member or club.allow_joining or club.homepage or club.facebook_page or club.discord_invite_link or has_club_contact %}
{% if member %} {% elif club.allow_joining %}
{% csrf_token %}
{% endif %} {% if club.homepage %} Website {% endif %} {% if club.facebook_page %} Facebook {% endif %} {% if club.discord_invite_link %} Discord {% endif %} {% if has_club_contact and request.user.is_authenticated %} Email {% endif %}
{% endif %} {% if not club.enable_club_page and can_access_admin %}

This page is only visible to admins. Enable it in settings to make it public.

{% endif %} {% if member %}
{% include "partials/club_member_uuid_card.html" %} {% if membership_invoice %} {% include "partials/membership_payment_inline.html" %} {% elif club.membership_annual_fee and membership_is_paid_member and not membership_is_expired and not membership_expiring_soon %}

You're all paid up. You can renew again when your membership is close to expiring.

{% endif %}
{% elif not club.allow_joining %}

This club is not currently accepting new members through this site.

{% endif %} {% if show_bap_tabs %} {# ── Tabbed layout when BAP is enabled ─────────────────────────────── #}
{# Auctions tab #}
{% if club_auctions %} {% else %}

No auctions yet.

{% endif %}
{# BAP leaderboard tab #}
{% if bap_top10_chart_ytd %}
Top 10 — points over time
{{ bap_top10_chart_ytd|json_script:"bap-top10-chart-ytd-data" }} {% endif %} {% include "partials/bap_leaderboard.html" with entries=bap_leaderboard_ytd points_attr="bap_points_ytd" %}
{% if club.separate_hap %} {# HAP leaderboard tab #}
{% if hap_top10_chart_ytd %}
Top 10 — points over time
{{ hap_top10_chart_ytd|json_script:"hap-top10-chart-ytd-data" }} {% endif %} {% include "partials/bap_leaderboard.html" with entries=hap_leaderboard_ytd points_attr="hap_points_ytd" %}
{% endif %} {% if club.separate_cap %} {# Culture leaderboard tab #}
{% if cap_top10_chart_ytd %}
Top 10 — points over time
{{ cap_top10_chart_ytd|json_script:"cap-top10-chart-ytd-data" }} {% endif %} {% include "partials/bap_leaderboard.html" with entries=culture_leaderboard_ytd points_attr="culture_points_ytd" %}
{% endif %} {% if my_bap_awards is not None %} {# My Points tab #}
{% if my_points_chart_data %}
Cumulative points over time
{{ my_points_chart_data|json_script:"my-points-chart-data" }} {% endif %} {% if my_bap_awards %}

This page shows only your 25 most recent BAP points. To see all lots you've gotten BAP points for, visit your selling dashboard and filter for BAP.

{% else %}

No points recorded yet.

{% endif %}
{% endif %}
{# /tab-content #} {% else %} {# ── Flat layout when BAP is not enabled ───────────────────────────── #} {% if has_points %}

Leaderboard

{% if bap_leaderboard %}
BAP Points
    {% for m in bap_leaderboard %}
  1. {{ m }} — {{ m.bap_points }} pts
  2. {% endfor %}
{% endif %} {% if hap_leaderboard %}
HAP Points
    {% for m in hap_leaderboard %}
  1. {{ m }} — {{ m.hap_points }} pts
  2. {% endfor %}
{% endif %}
{% endif %} {% if club_auctions %}

Auctions

{% endif %} {% endif %}{# /show_bap_tabs #}
{% endblock %} {% block extra_js %} {% if show_bap_tabs %} {% endif %} {% endblock %}