{% load i18n tz %} {% if report.title %}{{ report.title }}{% else %}{% trans "Consumer Report" %}{% endif %}

{% if report.title %}{{ report.title }}{% else %}{% trans "Consumer Report" %}{% endif %}

{% blocktrans with start=report.start_date|date:"DATE_FORMAT" end=report.end_date|date:"DATE_FORMAT" %}Period: {{ start }} to {{ end }}{% endblocktrans %}

{% with data=report.rows_for_display %} {% if data.schema == "evcs-session/v1" %} {% if data.evcs %} {% for evcs in data.evcs %}

{{ evcs.display_name }}

{% if evcs.serial_number %}

{% trans "Serial" %}: {{ evcs.serial_number }}

{% endif %}

{% trans "Total kW (all time)" %}: {{ evcs.total_kw|floatformat:2 }} · {% trans "Total kW (period)" %}: {{ evcs.total_kw_period|floatformat:2 }}

{% if evcs.transactions %} {% for row in evcs.transactions %} {% endfor %}
{% trans "Connector" %} {% trans "Start kW" %} {% trans "End kW" %} {% trans "Session kW" %} {% trans "Session start" %} {% trans "Session end" %} {% trans "Time" %} {% trans "RFID label" %} {% trans "Account" %}
{% if row.connector is not None or row.connector_label %}{{ row.connector_label|default:row.connector }}{% else %}—{% endif %} {% if row.start_kwh is not None %}{{ row.start_kwh|floatformat:2 }}{% else %}—{% endif %} {% if row.end_kwh is not None %}{{ row.end_kwh|floatformat:2 }}{% else %}—{% endif %} {{ row.session_kwh|floatformat:2 }} {% if row.start %} {% else %}—{% endif %} {% if row.end %} {% else %}—{% endif %} {{ row.duration_minutes|default_if_none:"—" }} {{ row.rfid_label|default:"—" }} {{ row.account_name|default:"—" }}
{% else %}

{% trans "No charging sessions recorded for this charge point." %}

{% endif %} {% endfor %}

{% trans "Report totals" %}

{% trans "Total kW (all time)" %}: {{ data.totals.total_kw|floatformat:2 }}

{% trans "Total kW (period)" %}: {{ data.totals.total_kw_period|floatformat:2 }}

{% else %}

{% trans "No charging sessions were recorded for this period." %}

{% endif %} {% else %} {% with rows=data.rows %} {% if rows %} {% with first=rows|first %} {% if first.start %} {% for row in rows %} {% empty %} {% endfor %}
{% trans "RFID / Account" %} {% trans "Session start" %} {% trans "Session end" %} {% trans "Time" %} {% trans "Energy (kW)" %}
{{ row.subject }} {% if row.start %} {% else %}{% trans "Unavailable" %}{% endif %} {% if row.end %} {% else %}{% trans "In progress" %}{% endif %} {{ row.duration_minutes|default_if_none:"—" }} {{ row.kw|floatformat:2 }}
{% trans "No data available." %}
{% else %} {% for row in rows %} {% empty %} {% endfor %}
{% trans "RFID/Account" %} {% trans "Sessions" %} {% trans "Total kW" %}
{{ row.subject }} {{ row.count }} {{ row.kw|floatformat:2 }}
{% trans "No data available." %}
{% endif %} {% endwith %} {% else %}

{% trans "No data available." %}

{% endif %} {% endwith %} {% endif %} {% endwith %}