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

19 lines
542 B
HTML
Raw Normal View History

{% extends "core/base.html" %}
{% load lyric_extras %}
{% block title_text %}Dashboard{% endblock title_text %}
{% block header_text %}Dashboard{% endblock header_text %}
{% block scripts %}
{% include "apps/dashboard/_partials/_scripts.html" %}
{% endblock scripts %}
{% block content %}
{% if user.is_authenticated %}
<div id="id_dash_content">
<button id="id_dash_gear">&#9881;</button>
{% include "apps/dashboard/_partials/_applets.html" %}
</div>
{% endif %}
{% endblock content %}