{% extends "pages/base.html" %} {% load i18n %} {% block title %}{{ display_label }}{% endblock %} {% block content %}

{% trans "RFID card" %}

{{ display_label }}

{% if public_enabled %} {% trans "Public usage view active" %} {% else %} {% trans "Public usage view inactive" %} {% endif %}

{{ total_kwh|floatformat:2 }}
{% trans "total kWh" %}
{{ total_sessions }}
{% trans "sessions" %}
{{ current_month_kwh|floatformat:2 }}
{% trans "month kWh" %}
{{ accepted_scan_count }}
{% trans "accepted scans" %}
{{ rejected_scan_count }}
{% trans "rejected scans" %}
{% trans "Last used" %}
{% if last_used_at %}{% else %}{% trans "No usage yet" %}{% endif %}
{% trans "Current month sessions" %}
{{ current_month_sessions }}
{% trans "Scanner sightings" %}
{{ scanned_count }}

{% trans "Recent Charging Sessions" %}

{% for transaction in recent_transactions %} {% empty %} {% endfor %}
{% trans "Started" %} {% trans "Ended" %} {% trans "Charge point" %} {% trans "kWh" %} {% trans "Status" %}
{% if transaction.stopped_at %}{% else %}{% trans "In progress" %}{% endif %} {{ transaction.charger_label }} {{ transaction.energy_kwh|floatformat:2 }} {{ transaction.status|title }}
{% trans "No charging sessions found." %}

{% trans "Recent Card Activity" %}

{% for attempt in recent_attempts %} {% empty %} {% endfor %}
{% trans "Time" %} {% trans "Status" %} {% trans "Source" %} {% trans "Reason" %}
{{ attempt.status|title }} {{ attempt.source|title }} {{ attempt.reason|default:"-" }}
{% trans "No recent card activity found." %}
{% endblock %}