Files
RosterChief/management/templates/management/rbihf_import_form.html
Bernard Siebens adf1120358 Checkpoint: management app redesign, onboarding/signup workflow, and events calendar backend
Large uncommitted body of work accumulated across sessions on this branch --
committing as a checkpoint so it's tracked and future worktree-isolated agents
see the real codebase instead of a stale ancestor commit. Covers the
management app's dedicated Tailwind theme and templates, the club onboarding
requirement/signup workflow (club/services/onboarding.py, requirement/status
models, sign-up dashboard), fee/status auto-activation decoupling, referee
management, and the new events calendar grid service layer.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01ECGMEwrc2k4D8VQuwjstj9
2026-08-19 23:34:43 +02:00

36 lines
1.4 KiB
HTML

{% extends "management/base.html" %}
{% load lucide ui i18n %}
{% block heading %}{% trans "Import from RBIHF" %}{% endblock heading %}
{% block panel %}
<div class="card w-full">
<div class="card-body">
<p class="text-sm text-muted">
{% blocktrans %}Paste the URL of a team's page on the RBIHF website and pick which of
your teams it's for. Nothing is created yet: you'll see exactly what will
be added, changed, or removed before anything is saved.{% endblocktrans %}
</p>
<form method="post">
{% csrf_token %}
{% for error in form.non_field_errors %}
<div class="alert alert-error">
<span>{{ error }}</span>
</div>
{% endfor %}
{% for field in form %}
{% form_field field %}
{% endfor %}
<div class="card-actions justify-start pt-4">
<a class="btn btn-outline gap-2" href="{% url 'management:event_list' %}">{% lucide "arrow-left" size=16 %} {% trans "Cancel" %}</a>
<button class="btn btn-primary gap-2" type="submit">{% lucide "download" size=16 %} {% trans "Fetch and preview" %}</button>
</div>
</form>
</div>
</div>
{% endblock panel %}