19 lines
628 B
HTML
19 lines
628 B
HTML
{% extends 'base.html' %}
|
|
{% load i18n static custom_filters django_ledger %}
|
|
{% block content %}
|
|
{% if request.user.is_authenticated %}
|
|
<div
|
|
id="dashboard-content"
|
|
hx-get="{% if request.user.dealer %}{% url 'manager_dashboard' %}{% else %}{% url 'sales_dashboard' %}{% endif %}"
|
|
hx-trigger="load"
|
|
hx-target="#dashboard-content"
|
|
hx-swap="innerHTML"
|
|
>
|
|
<div class="spinner-container">
|
|
<div class="spinner"></div>
|
|
<p>Loading dashboard...</p>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% endblock %} |