{% extends "pages/base.html" %} {% load i18n %} {% block title %}{{ charger.display_name|default:charger.name|default:charger.charger_id }} - {% trans "Search Sessions" %}{% endblock %} {% block content %}

{{ charger.display_name|default:charger.name|default:charger.charger_id }}

{% trans "Back to status" %}
{% if connector_links %} {% endif %} {% if date_toggle_links %}
{% trans "Date display" %}
{% for link in date_toggle_links %} {{ link.label }} {% endfor %}
{% endif %}
{% if transactions is not None %} {% if transactions %}
{% if charger.connector_id is None %} {% endif %} {% for tx in transactions %} {% if charger.connector_id is None %} {% endif %} {% if date_view == "received" %} {% else %} {% endif %} {% endfor %}
{% trans "ID" %}{% trans "Connector" %}{% trans "Start" %}{% if date_view == "received" %}{% trans "Received time" %}{% else %}{% trans "Charger time" %}{% endif %} {% trans "Stop" %}{% if date_view == "received" %}{% trans "Received time" %}{% else %}{% trans "Charger time" %}{% endif %} {% trans "Energy (kW)" %} {% trans "RFID Label" %}
{{ tx.id }}{{ tx.charger.connector_label }}{{ tx.received_start_time|default:tx.start_time }} {{ tx.received_stop_time|default:tx.stop_time|default:"-" }}{{ tx.start_time }} {{ tx.stop_time|default:"-" }}{{ tx.kw|floatformat:2 }} {% if tx.rfid_label %} {{ tx.rfid_label }} {% else %} - {% endif %}
{% else %}

{% trans "No sessions found." %}

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