{% extends "ocpp/landing_base.html" %} {% load i18n %} {% block title %}{{ charger.display_name|default:charger.name|default:charger.charger_id }}{% endblock %} {% block content %} {% with charger.display_name|default:charger.name|default:charger.charger_id as charger_label %}
{% trans "Latest report" %}
{% trans "Reported status" %}: {{ charger.last_status }}
{% endif %} {% if charger_error_code %}{% trans "Error code" %}: {{ charger_error_code }}
{% endif %} {% if charger.last_status_timestamp %}{% trans "Last status update" %}: {{ charger.last_status_timestamp|date:"SHORT_DATETIME_FORMAT" }}
{% endif %} {% if charger.last_status_vendor_info %} {% if charger.last_status_vendor_info.vendorId %}{% trans "Vendor" %}: {{ charger.last_status_vendor_info.vendorId }}
{% endif %} {% if charger.last_status_vendor_info.info %}{% trans "Info" %}: {{ charger.last_status_vendor_info.info }}
{% endif %} {% endif %}{% trans "Charging" %}
{% if charger.connector_id is None and active_connector_count %}{% blocktrans count active=active_connector_count %}{{ active }} connector active{% plural %}{{ active }} connectors active{% endblocktrans %}
{% endif %}{% trans "Energy" %}
{{ tx.kw|floatformat:2 }} kW
{% trans "Started" %}
{{ tx.start_time|date:"SHORT_DATETIME_FORMAT" }}
{% if tx_rfid_details.display_label %} {{ tx_rfid_details.display_label }} {% else %} {% trans "RFID" %} {% endif %}
{% if tx_rfid_details.url %} {% else %}{{ tx_rfid_details.value }}
{% endif %}{% trans "Plug in your vehicle and slide your RFID card over the reader to begin charging." %}
{% trans "Reported status" %}: {{ item.last_status }}
{% endif %} {% if item.last_error_code %}{% trans "Error code" %}: {{ item.last_error_code }}
{% endif %} {% if item.last_status_timestamp %}{% trans "Last status update" %}: {{ item.last_status_timestamp|date:"SHORT_DATETIME_FORMAT" }}
{% endif %} {% if item.last_status_vendor_info %} {% if item.last_status_vendor_info.vendorId %}{% trans "Vendor" %}: {{ item.last_status_vendor_info.vendorId }}
{% endif %} {% if item.last_status_vendor_info.info %}{% trans "Info" %}: {{ item.last_status_vendor_info.info }}
{% endif %} {% endif %}{% trans "Energy" %}: {{ item.tx.kw|floatformat:2 }} kW
{% trans "Started" %}: {{ item.tx.start_time|date:"SHORT_DATETIME_FORMAT" }}
{% if item.rfid_details %}{% if item.rfid_details.display_label %} {{ item.rfid_details.display_label }} {% else %} {% trans "RFID" %} {% endif %} : {% if item.rfid_details.url %} {{ item.rfid_details.value }} {% else %} {{ item.rfid_details.value }} {% endif %}
{% endif %} {% else %}{% trans "No active transaction" %}
{% endif %}