Files
python-tdd/src/templates/apps/dashboard/home.html

27 lines
894 B
HTML
Raw Normal View History

{% extends "core/base.html" %}
{% load lyric_extras %}
{% block title_text %}Dashboard{% endblock title_text %}
{% block header_text %}
{% if user.is_authenticated %}
<span>Dash</span>board
{% else %}
<span>Howdy </span>stranger
{% endif %}
{% 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/dashboard/_partials/_applets.html" %}
{% include "apps/applets/_partials/_gear.html" with menu_id="id_dash_applet_menu" %}
</div>
<div id="id_tooltip_portal" class="token-tooltip" style="display:none;"></div>
<div id="id_natus_tooltip" class="tt" style="display:none;"></div>
{% endif %}
{% endblock content %}