{% if session.loggedIn == false %} {% else %} {% endif %} {% include "base/header.tpl" %}

Account transactions

This is an overview of your credit transaction history. They are updated as soon as the transaction is made.
    {% if canGoNext %} {% else %} {% endif %}
  • {{ currentMonth }} {{ currentYear }}

{% if transactions|length > 0 %}

{% autoescape 'html' %} {% set num = 0 %} {% for transaction in transactions %} {% if num % 2 == 0 %} {% else %} {% endif %} {% set num = num + 1 %} {% endfor %} {% endautoescape %} {% else %} No transactions found. {% endif %}
Date Price Description
{{ transaction.getFormattedDate() }} {{ transaction.getCostCoins() }} {{ transaction.getDescription() }}

Your purse

{% if session.loggedIn == false %}
You need to sign in to see the purse
{% else %}
{% endif %}
{% include "base/ads_container.tpl" %}
{% include "base/footer.tpl" %}