{% extends "base.html" %} {% block title %}Dashboard - HAMeter{% endblock %} {% block page_title %}Dashboard{% endblock %} {% block top_actions %} {% endblock %} {% block content %}
{% if meters %}
{% for meter in meters %}

{{ meter.name }}

{{ meter.protocol|upper }}
-- {{ meter.unit_of_measurement }}
{% if meter.cost_factors %}
$--
Estimated Cost
Billing Start --
Fixed Charges $0.00
{% endif %}
Raw Reading --
Last Seen --
Readings 0
Meter ID {{ meter.id }}
Multiplier {{ meter.multiplier }}
{% endfor %}
{% else %}

No meters configured.

Run Discovery or Add Meter Manually

{% endif %}
{% endblock %}