aurweb/templates/index.html
Kevin Morris dbbae97038
housekeep: move templates/packages/widgets/* to templates/packages/
Signed-off-by: Kevin Morris <kevr@0cost.org>
2022-01-18 08:27:19 -08:00

19 lines
575 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/search_widget.html' %}
{% include 'partials/packages/updates.html' %}
{% include 'partials/packages/statistics.html' %}
</div>
{% endblock %}