{% extends "modern/base.html" %} {% block title %}Admin - Zebra Day{% endblock %} {% block content %}
{{ labs | length }}
Labs
{{ printer_count }}
Printers
{{ template_count }}
Templates
{{ auth_summary.mode | upper }}
Auth Mode

Runtime

Deployment{{ deployment_code }}
Storage{{ storage_mode | upper }}
TapDB Namespace{{ tapdb_namespace }}
Auth Enabled{{ "yes" if auth_summary.enabled else "no" }}
Internal API Key{{ "configured" if auth_summary.has_internal_api_key else "absent" }}

Auth Session

{% if auth_enabled and is_authenticated %}
{{ user_name or "authenticated user" }} Current web session
Logout End the current session
{% elif auth_enabled %}
Login Start a Cognito-backed web session
{% else %}
No Auth Mode Started with the explicit global auth override
{% endif %}

Observability Endpoints

{% for path in observability_links %}
{{ path }} Structured service contract output
{% endfor %}
{% endblock %}