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

Account transactions

Esta es una descripción general de su historial de transacciones de crédito.Se actualizan tan pronto como se realiza la transacción.
    {% 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 se encontraron transacciones. {% endif %}
Data Precio Descripción
{{ transaction.getFormattedDate() }} {{ transaction.getCostMonedas() }} {{ transaction.getDescription() }}

Tu monedero

{% if session.loggedIn == false %}
You need to sign in to see the purse
{% else %}
  • You Currently Have:
    {{ playerDetails.credits }} Monedas
  • Ingrese el código del cupón (sin espacios):
    OK
{% endif %}
{% include "base/ads_container.tpl" %}
{% include "base/footer.tpl" %}