{% extends "base.dj.html" %} {% block title %}Claremont MakerSpace Management{% endblock %} {% block content %} {% if not user.is_authenticated %}
You are not logged in. Much of this site is inaccessible until you log in.
{% endif %}
{% for app, app_dash in apps.items %} {% if app_dash.visible %}
{{ app }}
{% include app_dash.template with app=app ctx=app_dash.context %}
{% endif %} {% endfor %}
{% endblock %} {% block script %} {% endblock %}