43 lines
2.1 KiB
HTML
43 lines
2.1 KiB
HTML
{% load static %}
|
|
<!doctype html>
|
|
<html lang="en" class="h-full">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}HoopScout{% endblock %}</title>
|
|
<link rel="stylesheet" href="{% static 'css/main.css' %}">
|
|
<script src="{% static 'vendor/htmx.min.js' %}" defer></script>
|
|
</head>
|
|
<body class="min-h-full bg-slate-100 text-slate-900">
|
|
<header class="border-b border-slate-200 bg-white">
|
|
<div class="page-container flex flex-wrap items-center justify-between gap-4 py-3">
|
|
<a class="text-xl font-bold tracking-tight text-slate-900 no-underline" href="{% url 'core:home' %}">HoopScout</a>
|
|
<nav class="flex flex-wrap items-center gap-2 text-sm">
|
|
<a class="rounded-md px-2 py-1 hover:bg-slate-100" href="{% url 'players:index' %}">Players</a>
|
|
<a class="rounded-md px-2 py-1 hover:bg-slate-100" href="{% url 'competitions:index' %}">Competitions</a>
|
|
<a class="rounded-md px-2 py-1 hover:bg-slate-100" href="{% url 'teams:index' %}">Teams</a>
|
|
<a class="rounded-md px-2 py-1 hover:bg-slate-100" href="{% url 'scouting:index' %}">Scouting</a>
|
|
{% if request.user.is_authenticated %}
|
|
<a class="rounded-md px-2 py-1 hover:bg-slate-100" href="{% url 'core:dashboard' %}">Dashboard</a>
|
|
<form method="post" action="{% url 'users:logout' %}">
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn-secondary px-2 py-1 text-xs">Logout</button>
|
|
</form>
|
|
{% else %}
|
|
<a class="rounded-md px-2 py-1 hover:bg-slate-100" href="{% url 'users:login' %}">Login</a>
|
|
<a class="btn px-2 py-1 text-xs" href="{% url 'users:signup' %}">Signup</a>
|
|
{% endif %}
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="page-container py-6">
|
|
{% include 'partials/messages.html' %}
|
|
<div id="htmx-loading" class="htmx-indicator mb-4 rounded-md border border-slate-200 bg-white px-3 py-2 text-sm text-slate-600" aria-live="polite">
|
|
Loading...
|
|
</div>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|