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 %}
|
|
|
|
|
{% block header_text %}Dashboard{% 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-06 18:14:01 -05:00
|
|
|
<div id="id_dash_content">
|
2026-03-09 15:09:41 -04:00
|
|
|
<button id="id_dash_gear">
|
|
|
|
|
<i class="fa-solid fa-gear"></i>
|
|
|
|
|
</button>
|
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 %}
|