{% extends "base.html" %} {% block title %}Dashboard - THU Home Alert{% endblock %} {% block content %}

Dashboard

{% if latest %}
Water
{% if latest.water_rmb is not none %} {{ latest.water_rmb }} RMB {% else %} N/A {% endif %}
Electricity
{% if latest.electr_kwh is not none %} {{ latest.electr_kwh }} kWh {% else %} N/A {% endif %}
Last Updated
{{ latest.time }}
{% else %}

No balance history yet. Run the monitor to populate data.

{% endif %} {% if account %}

Thresholds

Water: {{ account.water_threshold if account.water_threshold is not none else 'disabled' }} {% if account.water_threshold is not none %}RMB{% endif %} | Electricity: {{ account.electr_threshold if account.electr_threshold is not none else 'disabled' }} {% if account.electr_threshold is not none %}kWh{% endif %}

{% endif %}
{% if history %}

Balance History

{% endif %} {% endblock %}