mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
19 lines
575 B
HTML
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 %}
|