{% extends "base.html" %} {% load scoped_tags %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block page_subtitle %}Overview of your platform{% endblock %} {% block layer_indicator %}Layers 3, 4, 6, 8, 9{% endblock %} {% block content %} {# Stats Cards #}
{% include "components/_stat_card.html" with label="Services" value=stats.services|default:"0" icon="⚙" subtitle="Visible to you" %} {% include "components/_stat_card.html" with label="Teams" value=stats.teams|default:"0" icon="👥" subtitle="Your memberships" %} {% include "components/_stat_card.html" with label="Active Deploys" value=stats.active_deploys|default:"0" icon="🚀" subtitle="In progress" %} {% include "components/_stat_card.html" with label="Notifications" value=stats.unread|default:"0" icon="🔔" subtitle="Unread" %}
{# Recent Activity #}

Recent Activity

View all
{% if recent_audit %} {% include "components/_timeline.html" with entries=recent_audit %} {% else %}

No activity yet

{% endif %}
{# Active Environments #}

Active Environments

View all
{% if active_envs %}
{% for env in active_envs %}
{{ env.name }} {{ env.owner_id|truncate_id }}
{% include "components/_state_badge.html" with state=env.state %}
{% endfor %}
{% else %}

No active environments

{% endif %}
{# Isolation Demo Callout #} {% if scoped_principal %}

Isolation Demo

You're viewing as {{ scoped_principal.display_name }}. Switch users in the bar above to see how the dashboard changes — each user sees only their own services and the ones shared with their teams.

{% endif %} {% endblock %}