2026-01-27 13:48:59 -05:00
|
|
|
{% extends "core/base.html" %}
|
2026-03-04 00:07:10 -05:00
|
|
|
{% load lyric_extras %}
|
2026-01-27 13:48:59 -05:00
|
|
|
|
2026-03-06 21:34:43 -05:00
|
|
|
{% block title_text %}Dashboard{% endblock title_text %}
|
2026-03-10 01:25:07 -04:00
|
|
|
{% block header_text %}<span>Dash</span>board{% endblock header_text %}
|
2026-02-08 21:43:58 -05:00
|
|
|
|
|
|
|
|
{% block scripts %}
|
|
|
|
|
{% include "apps/dashboard/_partials/_scripts.html" %}
|
|
|
|
|
{% endblock scripts %}
|
2026-03-02 13:57:03 -05:00
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% if user.is_authenticated %}
|
2026-03-15 01:17:09 -04:00
|
|
|
<div id="id_dash_content" class="dashboard-page">
|
2026-03-09 21:13:35 -04:00
|
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_dash_applet_menu" %}
|
2026-03-06 18:14:01 -05:00
|
|
|
{% include "apps/dashboard/_partials/_applets.html" %}
|
|
|
|
|
</div>
|
2026-03-02 13:57:03 -05:00
|
|
|
{% endif %}
|
|
|
|
|
{% endblock content %}
|