{# app/templates/admin/dashboard.html #} {% extends "admin/base.html" %} {% from 'shared/macros/headers.html' import page_header %} {% from 'shared/macros/alerts.html' import loading_state, error_state %} {% from 'shared/macros/tables.html' import table_wrapper, table_header %} {% block title %}Dashboard{% endblock %} {% block alpine_data %}adminDashboard(){% endblock %} {% block content %} {{ page_header('Dashboard', action_label='Refresh', action_onclick='refresh()', action_icon='refresh') }} {{ loading_state('Loading dashboard...') }} {{ error_state('Error loading dashboard') }}

Total Vendors

0

Active Users

0

Verified Vendors

0

Import Jobs

0

{% call table_wrapper() %} {{ table_header(['Vendor', 'Status', 'Created', 'Actions']) }} {% endcall %}
{% endblock %} {% block extra_scripts %} {% endblock %}