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

{% translate "Clear all selected CP data" %}

{% blocktranslate %}You are about to purge stored data for the selected charge points. This will remove related transaction and meter value records and clear cached charger history.{% endblocktranslate %}

{% blocktranslate %}Review the rows scheduled for deletion for each charge point, then confirm to proceed.{% endblocktranslate %}

{% for summary in purge_summaries %} {% empty %} {% endfor %}
{% translate "Charge point" %} {% translate "Transactions" %} {% translate "Meter values" %} {% translate "Total rows" %}
{{ summary.display_name }} {{ summary.transactions }} {{ summary.meter_values }} {{ summary.total_rows }}
{% translate "No data found for the selected charge points." %}
{% translate "Total" %} {{ total_rows }}
{% csrf_token %} {% for obj in queryset %} {% endfor %}
{% translate "Cancel" %}
{% endblock %}