{% extends "base.html" %} {% block title %}Dashboard - ECM Control{% endblock %} {% block content %}

ECM Control Dashboard

Quick Stats

Recipes: {{ recipes|length }}

Buttons: {{ buttons|length }}

Total Shots: {{ recent_shots|length }}

Button Status
{% for button in buttons %}
{{ button.name }} (GPIO {{ button.gpio_pin }}) {{ button.recipe_name or 'No Recipe' }}
{% endfor %}
Recent Shots
{% for shot in recent_shots %}
{{ shot.button_name }} - {{ shot.recipe_name }}
{{ shot.start_time }} - {{ shot.status }}
{% if shot.actual_grams %}
{{ shot.actual_grams }}g in {{ shot.actual_duration_seconds }}s
{% endif %}
{% endfor %}
{% endblock %}