{% spaceless %}{{ include("header.html") }}
{{ include("head_menu.html") }} {{ include("main_menu.html") }} {{ include("ads_col1.html") }} {% set info = get("info") %} {% set payments = get("payments") %}
{{ l("pending") }}
${{ info["pending"]|number_format(1, '.', ',') }}
{{ l("confirmed") }}
${{ info["confirmed"]|number_format(1, '.', ',') }}
{% if s("defaults/withdrawal_status") == "yes" %}
{{ l("withdrawal") }}
${{ info["withdrawal"]|number_format(0, '.', ',') }}
{% endif %}
{{ put_session_key() }}
{{ l("convert_earnings") }}
{{do_action("template", "user_points")}}
{{do_action("template", "user_points_money")}}

{{l("payments_history")}}

{% if payments %} {% for item in payments %} {% endfor %} {{ _get("pagination") }} {% else %}

{{ l("error_empty_items") }}

{% endif %}
{{ l("payment_id") }} {{ l("status") }} {{ l("amount") }} {{ l("date") }}
{{ item.payment_id }} {% if item.confirmed == '2' %} {{ l("done") }}{% endif %} {% if item.confirmed == '1' %} {{ l("pending_status") }}{% endif %} {% if item.confirmed == '0' %} {{ l("canceled") }}{% endif %}
{{ item.amount }}
{{ item.currency|upper }}
{{ time_ago(item.created_at) }}
{{ include("ads_col2.html") }}
{{ include("footer_content.html") }}
{{ include("footer.html") }}{% endspaceless %}