{% spaceless %}{{ include("header.html") }}
{{ include("head_menu.html") }} {{ include("main_menu.html") }}
{% set items = get("items") %}
{{ include("users_menu.html") }} {% if items %}
{% for item in items %} {% set uniqueid = surfow_encrypt(item.id) %} {% set this_table = 'users' %} {% set wallet = user_wallet(item.id) %} {% endfor %}
{{ l("user") }} {{ l("user_balance") }} {{ l("account_type") }} {{ l("activity") }}
{% if item.status %} {% else %} {% endif %}
{% if item.username %} @{{ item.username|e }} {% else %}N/A{% endif %}
{% if item.created_at %} {{ l("registered") }} {{ time_ago(item.created_at) }} {% endif %}
{{ item.points|number_format(2, '.', ',') }}
{{ wallet.confirmed|number_format(2, '.', ',') }}
{% if item.type == 'pro' %}
{{ l("paid_account") }}
{% else %}
{{ l("free_account") }}
{% endif %}
{{ l("last_seen") }}
{% if item.last_run %} {{ time_ago(item.last_run) }} {% else %}N/A{% endif %}
{{ l("overview") }}
{{ _get("pagination") }}
{% else %}

{{ l("nothing_found") }}

{% endif %}
{{ include("footer_content.html") }}
{{ include("footer.html") }}{% endspaceless %}