{% extends "pages/base.html" %} {% load i18n %} {% block title %}{% trans "Energy Tariff Calculator" %}{% endblock %} {% block content %}

{% trans "Energy Tariff Calculator" %}

{% csrf_token %}
{% blocktrans trimmed count count=tariff_options|length %} {{ count }} tariff available {% plural %} {{ count }} tariffs available {% endblocktrans %}
{% if not result and not error and not no_tariffs %}

{% trans "Select a CFE tariff and enter your expected kWh consumption to estimate the energy bill in MXN." %}

{% else %} {% if error %}

{{ error }}

{% elif no_tariffs %}

{% trans "No tariffs match the selected filters. Try expanding your search." %}

{% elif result %}

{% trans "Estimated Bill" %}

{% trans "Tariff" %}{{ result.tariff }}
{% trans "Year" %}{{ result.tariff.year }}
{% trans "Contract type" %}{{ result.tariff.get_contract_type_display }}
{% trans "Climate zone" %}{{ result.tariff.zone }}
{% trans "Season" %}{{ result.tariff.get_season_display }}
{% trans "Billing period" %}{{ result.tariff.get_period_display }}
{% trans "Time window" %}{{ result.tariff.start_time|time:"H:i" }} – {{ result.tariff.end_time|time:"H:i" }}
{% trans "Unit price" %}${{ result.unit_price|floatformat:4 }} MXN/kWh
{% trans "Unit cost" %}${{ result.unit_cost|floatformat:4 }} MXN/kWh
{% trans "Consumption" %}{{ result.kwh|floatformat:2 }} kWh
{% trans "Estimated bill" %}${{ result.total_price|floatformat:2 }} MXN
{% trans "Provider cost" %}${{ result.total_cost|floatformat:2 }} MXN
{% trans "Gross margin" %}${{ result.margin_total|floatformat:2 }} MXN
{% if result.tariff.notes %}

{{ result.tariff.notes }}

{% endif %}
{% endif %}
{% endif %}
{% endblock %}