{% extends "ocpp/landing_base.html" %} {% load i18n %} {% block title %}{% trans "Energy Account Summary" %}{% endblock %} {% block content %}
{% trans "Account" %}
{{ account.name }}
{% trans "Balance" %}
{{ account.balance_kw|floatformat:3 }} kWh
{% trans "Available Credit" %}
${{ account.balance_mxn|floatformat:2 }} MXN
{% trans "Auth Requirement" %}
{% if energy_credits_required %}{% trans "Credits Required" %}{% else %}{% trans "No Credits Required" %}{% endif %}
{% trans "Previous Sessions" %}
{% if recent_sessions %}{% trans "Recent sessions" %}
{{ recent_sessions|length }}
{% trans "Total recent energy" %}
0.00 kWh
| {% trans "Started" %} | {% trans "Charge Point" %} | {% trans "Energy" %} |
|---|---|---|
| {{ session.start_time|date:"M j, Y" }} {{ session.start_time|date:"H:i" }} | {{ session.charger.display_name|default:session.charger.charger_id }} {{ session.charger.charger_id }} | {{ session.kw|floatformat:2 }} kWh |
{% trans "No charging sessions yet" %}
{% trans "Start a charging session from this charge point to build your activity history and track recent energy usage here." %}
{% trans "Start from Charge Point" %}{% trans "No energy account is linked to this user." %}
{% endif %}