{% extends "op_zz_frame.html" %} {% block centercontent %} {{ _('Charging Sessions') }} {{ _('Month') }} {% for month in available_months %} {{ month }} {% endfor %} {{ _('Show starred only') }} {{ _('Show') }} {% if import_feedback and import_feedback.status %} {{ import_feedback.message }} {% endif %} {{ _('Analysis') }} {{ _('Chargepoint') }} {{ _('Connector') }} {{ _('Session ID') }} {{ _('Start') }} {{ _('End') }} RFID {{ _('Energy (kWh)') }} {{ _('OCMF Energy (kWh)') }} SQL {% for s in sessions %} {% if s.id %} {% if s.starred %}★{% else %}☆{% endif %} {% else %} {% endif %} {% if s.id %} {% endif %} {{ s.station_id }} {{ s.connector_id }} {{ s.id }} {{ s.start }} {{ s.end }} {{ s.id_tag }} {% if s.energy is not none %}{{ '%.3f'|format(s.energy) }}{% endif %} {% if s.ocmf_energy is not none %}{{ '%.3f'|format(s.ocmf_energy) }}{% endif %} {% if s.id %} {% endif %} {% endfor %} {{ _('SQL Import') }} {{ _('Import SQL') }} {% endblock %}