Konfiguration vergleichen
Zurück zum Dashboard
{% for station_id in station_ids %}
{{ station_id }}
{% endfor %}
{% if trimmed_selection %}
Es werden maximal {{ max_compare }} Wallboxen gleichzeitig verglichen.
{% endif %}
{% if comparison_rows %}
| Key |
{% for station_id in station_ids %}
{{ station_id }} |
{% endfor %}
{% for row in comparison_rows %}
| {{ row.key }} |
{% for cell in row.cells %}
{% if cell.display is string and cell.display|length > 40 %}
{{ cell.display[:40] ~ '....' }}
{% else %}
{{ cell.display }}
{% endif %}
|
{% endfor %}
{% endfor %}
{% else %}
Es konnten keine Konfigurationswerte geladen werden.
{% endif %}
{% endblock %}