{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block content %}

{% trans "Send bundled charging profile" %}

{% trans "Combine the selected profiles into a single SetChargingProfile request sent to the EVCS (connector 0)." %}

{% csrf_token %} {% for obj in profiles %} {% endfor %}
{{ adminform.form.non_field_errors }} {% for fieldset in adminform %}
{% for line in fieldset %}
{{ line.errors }} {{ line.field.label_tag }} {{ line.field }} {% if line.field.help_text %}

{{ line.field.help_text }}

{% endif %}
{% endfor %}
{% endfor %}

{% trans "Selected profiles" %}

{% endblock %}