{% extends 'layout.html' %} {% block title %}Utilization Dashboard{% endblock %} {% block content %}

Device Dashboard

{% if devices %} {% for device in devices %}

Device: {{ device.mac_address }}

MCU type : {{ device.mcu_type }}

Location : {{ device.location }}

Cycle Count : {{ device.latest_cycle_count }}

Total device Run Hours : {{ device.total_run_time }}


Today : {{ device.today_utilization }}

Yesterday : {{ device.yesterday_utilization }}

This Week : {{ device.weekly_utilization }}

This Month : {{ device.this_month_utilization }}

Last Month : {{ device.last_month_utilization }}

Year-to-Date : {{ device.ytd_utilization }}

Last Year : {{ device.last_year_utilization }}

{% endfor %} {% else %}

No data available.

{% endif %}
{% endblock %}