{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block content %}
{{ stats.total_edges }}
Total Edges
{{ stats.online }}
Online
{{ stats.deploying }}
Deploying
{{ stats.error }}
Errors
Recent Edge Devices
View All
{% for edge in recent_edges %} {% endfor %}
Hostname Serial Customer Status
{{ edge.hostname }} {{ edge.serial_number }} {{ edge.customer.name if edge.customer else 'N/A' }} {% with status=edge.status.value %} {% include "partials/status_cell.html" %} {% endwith %}
Status Breakdown
{% for status_name, count in stats.status_breakdown.items() %}
{% with status=status_name %} {% include "partials/status_cell.html" %} {% endwith %} {{ count }}
{% endfor %}
Customers
Total {{ stats.total_customers }}
Orchestrators {{ stats.total_orchestrators }}
{% endblock %}