76 lines
2.7 KiB
HTML
76 lines
2.7 KiB
HTML
{% load static %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<!-- Bootstrap CSS -->
|
|
<link href="{% static 'bootstrap.min.css' %}" rel="stylesheet">
|
|
<!-- Tabulator CSS -->
|
|
<link href="{% static 'tabulator_bootstrap5.min.css' %}" rel="stylesheet">
|
|
<title>
|
|
{% block title %}Claremont MakerSpace{% endblock %}
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<nav class="navbar navbar-expand-sm navbar-light bg-light">
|
|
<div class="container-fluid">
|
|
<a class="navbar-brand" href="{% url 'dashboard:dashboard' %}">Claremont MakerSpace</a>
|
|
<button class="navbar-toggler"
|
|
type="button"
|
|
data-bs-toggle="collapse"
|
|
data-bs-target="#user-nav"
|
|
aria-controls="user-nav"
|
|
aria-expanded="false"
|
|
aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div id="user-nav" class="collapse navbar-collapse justify-content-end">
|
|
<div class="navbar-nav">
|
|
{% block nav_extra %}{% endblock %}
|
|
{% if user.is_staff %}
|
|
<a class="nav-item nav-link"
|
|
href="{% block admin_link %}{% url 'admin:index' %}{% endblock %}">Admin</a>
|
|
{% endif %}
|
|
{% if user.is_authenticated %}
|
|
<form method="post" action="{% url 'logout' %}">
|
|
{% csrf_token %}
|
|
<button class="btn" type="submit">Logout: {{ user }}</button>
|
|
</form>
|
|
{% else %}
|
|
<a class="nav-item nav-link"
|
|
href="{% url 'login' %}?next={{ request.get_full_path }}">Login</a>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{% if messages %}
|
|
<div class="messages m-3">
|
|
{% for message in messages %}
|
|
{# TODO: should use tags correctly for bootstrap alerts #}
|
|
<div role="alert"
|
|
class="alert alert-info alert-dismissible fade show {% if message.tags %}{{ message.tags }}{% endif %}">
|
|
{{ message }}
|
|
<button type="button"
|
|
class="btn-close"
|
|
data-bs-dismiss="alert"
|
|
aria-label="Close"></button>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
<div id="content" class="m-3">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
{% block footer %}{% endblock %}
|
|
<!-- Bootstrap JS -->
|
|
<script src="{% static 'bootstrap.bundle.min.js' %}"></script>
|
|
<!-- Tabulator JS -->
|
|
<script src="{% static 'tabulator.min.js' %}"></script>
|
|
{% block script %}{% endblock %}
|
|
</body>
|
|
</html>
|