{% spaceless %}{{ include("header.html") }} {% set user = get("user") %} {% set payments = get("items") %}
{{ include("head_menu.html") }} {{ include("main_menu.html") }}
{{ include("profile_menu.html") }}
{% if payments %} {% for item in payments %} {% set uniqueid = surfow_encrypt(item.id) %} {% set this_table = 'payments' %} {% endfor %} {% else %}

{{ l("error_empty_items") }}

{% endif %}
{{ l("payment_id") }} {{ l("amount") }} {{ l("date") }}
{{ item.payment_id }}
{% if item.ip %}{{ item.ip|e }}{% endif %}
{% if item.payment_service %}{{ item.payment_service|e }}{% endif %}
{{ item.amount }}
{{ item.currency|upper }}
{% if item.created_at %}{{ time_ago(item.created_at) }}{% endif %}
{% if item.updated_at %}{{ l("last_update") }} {{ time_ago(item.updated_at) }}{% endif %}
{% if item.confirmed == '2' %}
{{ l("done") }}
{% endif %} {% if item.confirmed == '1' %}
{{ l("pending_status") }}
{% endif %} {% if item.confirmed == '0' %}
{{ l("canceled") }}
{% endif %}
{{ _get("pagination") }}
{{ include("footer_content.html") }}
{{ include("footer.html") }}{% endspaceless %}