aurweb/templates/index.html
Kevin Morris 5a175bd92a
routers.html: add authenticated dashboard to homepage
Signed-off-by: Kevin Morris <kevr@0cost.org>
2021-08-17 21:59:13 -07:00

19 lines
592 B
HTML

{% extends 'partials/layout.html' %}
{% block pageContent %}
<div id="content-left-wrapper">
<div id="content-left">
{% if request.user.is_authenticated() %}
{% include 'dashboard.html' %}
{% else %}
{% include 'home.html' %}
{% endif %}
</div>
</div>
<div id="content-right">
{% include 'partials/packages/widgets/search.html' %}
{% include 'partials/packages/widgets/updates.html' %}
{% include 'partials/packages/widgets/statistics.html' %}
</div>
{% endblock %}