11 lines
385 B
HTML
11 lines
385 B
HTML
{% extends "tenant/layouts/base.html" %}
|
|
{% block title %}Dashboard{% endblock %}
|
|
{% block content %}
|
|
<h4 class="mb-4">Dashboard
|
|
{% if location %}<small class="text-muted fs-6">— {{ location.name }}</small>{% endif %}
|
|
</h4>
|
|
<div class="alert alert-info">
|
|
Phase 3 KPI widgets will appear here (daily revenue, appointments, staff on-shift, low-stock alerts).
|
|
</div>
|
|
{% endblock %}
|