{% extends 'baseadmin.html.twig' %} {% import "_modules/bsmacros.html.twig" as bs %} {% block title %}{{ parent() }} - View Customer{% endblock %} {% block breadcrumb %} {{ parent() }} {% endblock %} {% block content %}
User Info
{{ user.username }}
  • Username: {{ user.username }}
  • Email: {% if ((user.emailAddress|default(''))|length > 0) %}{{ user.emailAddress }}{% else %}-{% endif %}
  • SteamID: {{ user.steamid }}
  • Credit Balance: ${{ user.creditBalance|number_format(2) }}
  • {#
  • Roles: {% for role in user.roles %} {{ role }} {% endfor %}
  • #}
  • Billing Account: {% if user.stripeCustomerId %}{{ user.stripeCustomerId }} {% else %}-{% endif %}
  • Last Seen IP: {% if user.lastIP %}{{ user.lastIP.address }}{% else %}Unknown{% endif %}
  • Last Login: {% if user.lastLogin %}{{ user.lastLogin|date_tz }}{% else %}Never{% endif %}
  • {% if user.restricted %}
  • Restricted: Yes
  • {% endif %}
Associated IP Addresses
{% for ip in user.ipAddresses %} {% endfor %}
IP Address Last Seen
{{ ip.address }} {{ ip.lastSeenAt|date_tz }}
Latest Transactions
View All
{% for txn in transactions %} {% else %} {% endfor %}
UUID Amount Status Date
{{ txn.uuid }} ${{ txn.amount|number_format(2) }} {% if txn.disputed %} {% else %} {% endif %} {{ txn.timestamp|date_tz }}
No transactions found.
{% endblock %} {% block scripts %}{{ parent() }}{% endblock %}