{{ _('Charging Points') }}
{{ _('Filter EVSEs by status, capabilities, or tariffs and check their synchronization status with connected EMSPs.') }}
| {{ _('Location') }} | {{ _('EVSE') }} | {{ _('Status') }} | {{ _('Capabilities') }} | {{ _('Tariffs') }} | {{ _('Backends') }} | {{ _('Synchronization') }} | {{ _('Last updated') }} |
|---|---|---|---|---|---|---|---|
|
{{ evse.location_name }}
{{ evse.location_id }}
|
{{ evse.evse_uid }} | {% if evse.status %} {{ evse.status }} {% else %} {{ _('n/a') }} {% endif %} | {% if evse.capabilities %} {% for capability in evse.capabilities %} {{ capability }} {% endfor %} {% else %} {{ _('n/a') }} {% endif %} | {% if evse.tariffs %} {% for tariff in evse.tariffs %} {{ tariff }} {% endfor %} {% else %} {{ _('n/a') }} {% endif %} |
{% if evse.backends %}
{% for backend in evse.backends %}
{{ backend }}
{% endfor %}
{% else %}
{{ _('n/a') }}
{% endif %}
|
{% set sync_items = evse.sync_status or [] %}
{% if sync_items %}
{% for sync in sync_items %}
{{ sync.backend_name or _('Backend') }}
{% if sync.status_code %} ({{ sync.status_code }}){% endif %}
{% if sync.created_at %}{{ sync.created_at }}{% endif %}
{% if sync.error_message and not sync.success %}
{% else %}
{{ _('No sync attempts yet') }}
{% endif %}
{{ sync.error_message }}
{% endif %}
{% endfor %}
|
{{ evse.last_updated or _('n/a') }} |
| {{ _('No data available yet.') }} | |||||||