{% extends "pages/base.html" %} {% load i18n static %} {% block title %}{{ station_model.vendor }} {{ station_model.model_family }} {{ station_model.model }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

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

{% trans "Supported model profile, reference files, and integration guidance." %}

{% trans "Integration Rating" %}: {{ station_model.integration_rating }}/5
{% trans "Preferred OCPP" %} {% if station_model.preferred_ocpp_version %} {{ station_model.preferred_ocpp_version }} {% else %} {% trans "Not specified" %} {% endif %} {% trans "Connector" %} {{ station_model.connector_type|default:"-" }} {% trans "Max Power" %} {% if station_model.max_power_kw %}{{ station_model.max_power_kw }} kW{% else %}-{% endif %} {% trans "Max Voltage" %} {% if station_model.max_voltage_v %}{{ station_model.max_voltage_v }} V{% else %}-{% endif %}
{% if images %} {% with primary_image=images|first %} {% endwith %} {% if images|length > 1 %}
{% for image in images %} {% if not forloop.first %} {{ image.original_name }} {% endif %} {% endfor %}
{% endif %} {% else %}

{% trans "No images have been uploaded yet." %}

{% endif %} {% if station_model.notes %}

{% trans "Notes" %}

{{ station_model.notes }}

{% endif %}

{% trans "Special Instructions" %}

{% if instructions_html %}
{{ instructions_html|safe }}
{% else %}

{% trans "No special instructions have been provided." %}

{% endif %}

{% trans "Manuals and Files" %}

{% if documents %}
    {% for doc in documents %} {% with file_name=doc.original_name|default:doc.file.name file_type=doc.content_type|default:""|lower %}
  • {% if "pdf" in file_type %} PDF {% elif "spreadsheet" in file_type or "excel" in file_type or "csv" in file_type %} XLS {% elif "word" in file_type or "document" in file_type %} DOC {% elif "zip" in file_type or "compressed" in file_type %} ZIP {% elif "json" in file_type %} JSON {% elif "text" in file_type %} TXT {% else %} FILE {% endif %} {{ file_name }}
    {% if doc.content_type %} {{ doc.content_type }} {% endif %} {% if doc.size %} {{ doc.size|filesizeformat }} {% endif %} {% if doc.uploaded_at %} {% trans "Uploaded" %}: {{ doc.uploaded_at|date:"M j, Y" }} {% endif %}
    {% trans "Download" %}
  • {% endwith %} {% endfor %}
{% else %}

{% trans "No manuals or files have been uploaded yet." %}

{% endif %}
{% trans "Back to supported chargers" %}
{% endblock %}