{% extends 'main/base.html' %} {% load i18n %} {% block title %}{% trans "Account Details" %} - ODEON{% endblock %} {% block top_icon %} 👤 {% endblock %} {% block content %}
{% include 'main/_subheader.html' with title=_("Account Details") back="/personal/" %}
{% for t in transactions %}

{{ t.label }}

€{{ t.amount }}

{{ t.created_at|date:"Y-m-d H:i:s" }}

{% empty %}
🧾

{% trans "No transactions yet." %}

{% endfor %}
{% endblock %}