19 lines
620 B
HTML
19 lines
620 B
HTML
{% extends "core/base.html" %}
|
|
{% load lyric_extras %}
|
|
|
|
{% block title_text %}Dashboard{% endblock title_text %}
|
|
{% block header_text %}<span>Dash</span>board{% endblock header_text %}
|
|
|
|
{% block scripts %}
|
|
{% include "apps/dashboard/_partials/_scripts.html" %}
|
|
{% endblock scripts %}
|
|
|
|
{% block content %}
|
|
{% if user.is_authenticated %}
|
|
<div id="id_dash_content" class="dashboard-page">
|
|
{% include "apps/applets/_partials/_gear.html" with menu_id="id_dash_applet_menu" %}
|
|
{% include "apps/dashboard/_partials/_applets.html" %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock content %}
|