{% extends "base.html" %} {% block title %}Utility Providers{% endblock %} {% block page_title %}Utility Providers{% endblock %} {% block topbar_actions %} ← Utilities Add Provider {% endblock %} {% block content %} {% if providers %}
{% for p in providers %} {% endfor %}
Provider Type Account No. Unit Pays From Bills Actions
{{ p.name }} {% if not p.is_active %}Archived{% endif %} {% if p.billing_day %}
Bills on day {{ p.billing_day }}
{% endif %}
{{ p.type_label }} {{ p.account_number or '—' }} {{ p.usage_unit or '—' }} {{ p.default_account.name if p.default_account else '—' }} {{ counts[p.id] }}

Archiving hides a provider from the utilities dashboard but keeps its bill history. Deleting removes the bills too — payment transactions created by PFM are left in place.

{% else %}
No providers yet

Add electricity, water, gas, and internet providers to start tracking.

Add First Provider
{% endif %} {% endblock %}