{% extends "pages/base.html" %} {% load i18n static %} {% block title %}{% trans "Supported Chargers" %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{% trans "Supported Chargers" %}

{% trans "Browse supported charge point models and open each entry for manuals, instructions, and images." %}

{% trans "Vendor" %}

{% trans "OCPP preference" %}

{% trans "Integration rating" %}

{% if station_models %}
{% for model in station_models %}

{{ model.vendor }} {{ model.model_family }} {{ model.model }}

{% if model.preferred_ocpp_version %} {% trans "Preferred OCPP" %}: {{ model.preferred_ocpp_version }} {% else %} {% trans "Preferred OCPP" %}: {% trans "Not specified" %} {% endif %}

{{ model.integration_rating }}/5 {% trans "Integration" %}
{% trans "Connector" %}
{{ model.connector_type|default:"-" }}
{% trans "Max Power" %}
{% if model.max_power_kw %}{{ model.max_power_kw }} kW{% else %}-{% endif %}
{% trans "Max Voltage" %}
{% if model.max_voltage_v %}{{ model.max_voltage_v }} V{% else %}-{% endif %}
{% if model.notes %}

{{ model.notes|truncatewords:24 }}

{% endif %} {% trans "View details" %}
{% endfor %}
{% else %}

{% trans "No supported chargers have been added yet." %}

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}