2023-04-14 01:24:36 -04:00
|
|
|
{% extends "base.dj.html" %}
|
|
|
|
|
2024-07-22 19:02:17 -04:00
|
|
|
{% load django_vite %}
|
|
|
|
|
|
|
|
{% block vite_extra_assets %}
|
2024-07-24 01:48:59 -04:00
|
|
|
{% vite_asset 'dashboard/js/dashboard.entry.ts' %}
|
2024-07-22 19:02:17 -04:00
|
|
|
{% endblock %}
|
|
|
|
|
2023-04-14 01:24:36 -04:00
|
|
|
{% block title %}Claremont MakerSpace Management{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
{% if not user.is_authenticated %}
|
|
|
|
<div class="alert alert-warning">
|
|
|
|
You are not logged in. Much of this site is inaccessible until you <a href="{% url 'login' %}">log in</a>.
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
<div class="container">
|
|
|
|
<div style="display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fit, minmax(20em, auto));
|
|
|
|
gap: 0.5em">
|
|
|
|
{% for app, app_dash in apps.items %}
|
|
|
|
{% if app_dash.visible %}
|
|
|
|
<div>
|
|
|
|
<div class="card">
|
|
|
|
<h5 class="card-header">{{ app }}</h5>
|
2024-02-06 00:41:01 -05:00
|
|
|
{% include app_dash.template with app=app ctx=app_dash.context %}
|
2023-04-14 01:24:36 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|