Add billing-ending banner, events CRUD, RBIHF import, public API, team photos, and sponsors

A large batch of club-management features built up over one session:

- Club dashboard banner warning admins 1 month before billing ends
- Full Events/EventSeries CRUD (recurrence builder, occurrence lifecycle,
  per-team permissions), with match->game rename and game-specific fields
  (score, competition, live status, external game ID)
- Django-admin competition dropdown, gated per-club by feature flag
- Auto-import of RBIHF fixtures (scrape -> diff -> preview -> confirm),
  with location/opponent dropdowns suggested from existing club data
- Feature-flag-gated Shop/Forms nav sections, reusing the same flag
  machinery for the RBIHF import button
- Team roster now scoped to members active this season or next, sorted and
  grouped by position
- Club sport type (ice hockey / other), shown in the control panel's club
  subtitle
- Per-season team photo upload from the team page
- New public read-only API (Django Ninja) at /api/v1/: news, team rosters,
  upcoming/live/per-team games, and sponsors -- auto-documented via Swagger
  UI, CORS-enabled for a club's own external website
- Club sponsors: admin-only CRUD (logo, URL, active date window) plus a
  date-windowed, optionally randomized API endpoint
- Assorted fixes: NullBooleanField dropdown rendering, cross-club event
  validation timing, searchable-select chip placement, btn-neutral ->
  default button style sweep, calendar-month chart windows

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01R1gj3J1QPfP38XWpnpbFpy
This commit is contained in:
2026-08-06 17:36:04 +02:00
parent 6ad0d6658c
commit 98b8002a04
101 changed files with 6165 additions and 135 deletions

View File

@@ -7,6 +7,8 @@ Same reasoning for ``news_permissions`` below, gating just the "New news item"
action rather than the whole section (``NewsAuthorRequiredMixin``/``can_add_news``).
"""
from waffle import flag_is_active
from club.services.access import can_add_news, has_management_access, is_club_admin, is_coach_manager
#: Every management URL name, mapped to the nav item it should light up --
@@ -54,6 +56,8 @@ _NAV_SECTIONS = {
"team_staff_add": "team_list",
"team_staff_update": "team_list",
"team_staff_remove": "team_list",
"team_photo_set": "team_list",
"team_photo_delete": "team_list",
"news_list": "news_list",
"news_create": "news_list",
"news_detail": "news_list",
@@ -65,7 +69,20 @@ _NAV_SECTIONS = {
"news_photo_set_main": "news_list",
"news_photo_delete": "news_list",
"event_list": "event_list",
"event_series_list": "event_series_list",
"event_create": "event_list",
"event_detail": "event_list",
"event_update": "event_list",
"event_delete": "event_list",
"event_detach": "event_list",
"event_fetch_game_info": "event_list",
"rbihf_import": "event_list",
"rbihf_import_confirm": "event_list",
"event_series_create": "event_list",
"event_series_detail": "event_list",
"event_series_update": "event_list",
"event_series_delete": "event_list",
"event_series_stop": "event_list",
"event_series_generate": "event_list",
"location_list": "location_list",
"location_create": "location_list",
"location_update": "location_list",
@@ -74,6 +91,10 @@ _NAV_SECTIONS = {
"opponent_create": "opponent_list",
"opponent_update": "opponent_list",
"opponent_delete": "opponent_list",
"sponsor_list": "sponsor_list",
"sponsor_create": "sponsor_list",
"sponsor_update": "sponsor_list",
"sponsor_delete": "sponsor_list",
"product_list": "product_list",
"order_list": "order_list",
"discount_list": "discount_list",
@@ -124,6 +145,23 @@ def management_link(request):
return {"has_management_access": has_management_access(request.user, club)}
def feature_sections(request):
"""Whether the nav's Shop/Forms sections -- and the Events page's "Import
from RBIHF" button -- should show at all. Each is gated behind its own
waffle Flag (see club.mixins.FeatureRequiredMixin, which gates the
underlying views regardless), on top of the existing is_club_admin check
those all already require."""
club = getattr(request, "club", None)
if club is None or not request.user.is_authenticated:
return {"shop_enabled": False, "forms_enabled": False, "rbihf_enabled": False}
return {
"shop_enabled": flag_is_active(request, "shop"),
"forms_enabled": flag_is_active(request, "formbuilder"),
"rbihf_enabled": flag_is_active(request, "RBIHF"),
}
def news_permissions(request):
"""Whether the "New news item" action should show -- viewing the News
section itself is open to any staff, same as Roster/Staff."""