Add the `controlpanel` app: a platform-wide (not club-scoped) admin panel for creating clubs, archiving/restoring them, managing club admins, and per-club statistics (members, teams & staff, events, shop). Statistics are annotated in one query so the club list cannot fan out into N+1, and are returned as stat *groups* so growing the domain means adding one entry. Two access rules, both enforced by PlatformStaffRequiredMixin: - staff only (is_staff/is_superuser); anonymous are sent to login, signed-in non-staff get a 403. Staff already need a second factor, so the panel is 2FA-protected for free. - base domain only: the panel manages *all* clubs, so it 404s if the tenant middleware resolved a club from the subdomain. Granting admin to an unknown email creates the account (unusable password — they set one via password reset) and the Member behind it, since a ClubRole hangs off a Member. A member who already holds a role is promoted in place, because there is only one role per member per club. UI is Tailwind + daisyUI. allauth ships an element system, so overriding allauth/layouts/base.html plus ~13 element partials restyles *every* auth and 2FA screen at once — login, signup, password reset, the 2FA challenge, TOTP enrolment, passkeys and recovery codes — rather than templating 20+ pages. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
87 lines
4.1 KiB
HTML
87 lines
4.1 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>
|
|
{% block title %}ClubManager{% endblock title %}
|
|
</title>
|
|
{# Apply the stored theme before first paint, otherwise the page flashes
|
|
the wrong colours. With no stored preference we set nothing, so
|
|
daisyUI's `dark --prefersdark` follows the OS. #}
|
|
<script>
|
|
(() => {
|
|
const stored = localStorage.getItem("theme");
|
|
if (stored) document.documentElement.setAttribute("data-theme", stored);
|
|
})();
|
|
</script>
|
|
<link rel="stylesheet" href="{% static 'css/app.css' %}">
|
|
{% block extra_head %}{% endblock extra_head %}
|
|
</head>
|
|
<body class="min-h-screen bg-base-200">
|
|
<div class="navbar bg-base-100 shadow-sm">
|
|
<div class="flex-1">
|
|
<a class="btn btn-ghost text-xl" href="/">ClubManager</a>
|
|
{% if user.is_authenticated and user.is_staff %}
|
|
<a class="btn btn-ghost btn-sm" href="{% url 'controlpanel:dashboard' %}">Control panel</a>
|
|
{% endif %}
|
|
</div>
|
|
<div class="flex-none gap-2">
|
|
<button class="btn btn-ghost btn-circle"
|
|
aria-label="Toggle theme"
|
|
data-theme-toggle
|
|
type="button">
|
|
<svg class="h-5 w-5" fill="none" stroke="currentColor" stroke-width="2" viewBox="0 0 24 24">
|
|
<path stroke-linecap="round" stroke-linejoin="round" d="M12 3v1m0 16v1m9-9h-1M4 12H3m15.364 6.364l-.707-.707M6.343 6.343l-.707-.707m12.728 0l-.707.707M6.343 17.657l-.707.707M16 12a4 4 0 11-8 0 4 4 0 018 0z" /></svg>
|
|
</button>
|
|
{% if user.is_authenticated %}
|
|
<div class="dropdown dropdown-end">
|
|
<div tabindex="0" role="button" class="btn btn-ghost btn-sm">{{ user }}</div>
|
|
<ul tabindex="0"
|
|
class="menu dropdown-content z-10 mt-2 w-56 rounded-box bg-base-100 p-2 shadow">
|
|
<li>
|
|
<a href="{% url 'mfa_index' %}">Two-factor authentication</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'account_change_password' %}">Change password</a>
|
|
</li>
|
|
<li>
|
|
<a href="{% url 'account_logout' %}">Sign out</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% else %}
|
|
<a class="btn btn-primary btn-sm" href="{% url 'account_login' %}">Sign in</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% if messages %}
|
|
<div class="mx-auto mt-4 w-full max-w-5xl space-y-2 px-4">
|
|
{% for message in messages %}
|
|
<div class="alert {% if message.tags == 'error' %}alert-error{% elif message.tags == 'warning' %}alert-warning{% elif message.tags == 'success' %}alert-success{% else %}alert-info{% endif %}">
|
|
<span>{{ message }}</span>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<main class="mx-auto w-full max-w-5xl p-4">
|
|
{% block main %}{% endblock main %}
|
|
</main>
|
|
<script>
|
|
// No stored preference means "follow the OS", so read the effective theme
|
|
// from the OS when nothing is set yet.
|
|
document.querySelectorAll("[data-theme-toggle]").forEach((button) => {
|
|
button.addEventListener("click", () => {
|
|
const current =
|
|
document.documentElement.getAttribute("data-theme") ||
|
|
(window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light");
|
|
const next = current === "dark" ? "light" : "dark";
|
|
document.documentElement.setAttribute("data-theme", next);
|
|
localStorage.setItem("theme", next);
|
|
});
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|