{% extends "base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}

Confirma los datos de tu factura

Para ofrecerte un cálculo preciso, hemos extraído estos datos de tu factura. Por favor, revísalos y corrige lo necesario.

Datos generales
Tipo de peaje
Potencias contratadas (kW)
{% for period in ['P1', 'P2', 'P3', 'P4', 'P5', 'P6'] %} {% if period in detection.power_periods or not detection.power_periods %}
{% endif %} {% endfor %}
Precios de potencia (€/kW/{% if detection.power_price_unit %}{{ detection.power_price_unit }}{% else %}año{% endif %})
{% for period in ['P1', 'P2', 'P3', 'P4', 'P5', 'P6'] %} {% if period in detection.power_prices or not detection.power_prices %}
{% endif %} {% endfor %}
Consumos de energía (kWh)
{% for period in ['P1', 'P2', 'P3', 'P4', 'P5', 'P6'] %} {% if period in detection.energy_consumption or not detection.energy_consumption %}
{% endif %} {% endfor %}
Precios de energía (€/kWh)
{% for period in ['P1', 'P2', 'P3', 'P4', 'P5', 'P6'] %} {% if period in detection.energy_prices or not detection.energy_prices %}
{% endif %} {% endfor %}
Energía reactiva (kVArh)
{% for period in ['P1', 'P2', 'P3', 'P4', 'P5', 'P6'] %} {% if period in detection.reactive_energy or not detection.reactive_energy %}
{% endif %} {% endfor %}
Precios de energía reactiva (€/kVArh)
{% for period in ['P1', 'P2', 'P3', 'P4', 'P5', 'P6'] %} {% if period in detection.reactive_energy_prices or not detection.reactive_energy_prices %}
{% endif %} {% endfor %}
{% endblock %} {% block extra_styles %} {% endblock %}