{% extends 'base.html.twig' %} {% block body %}

Latest users Most recent users

{% for user in users %} {% endfor %}
name email Country city phone created on action
{{ user.first_name|default }} {{ user.last_name|default }} {{ user.email| default }} {{ user.country| default }} {{ user.city| default }} {{ user.phone ?? user.mobile_phone | default }} {{ user.registration_date |date('d-m-Y')| default }} {{ user.registration_date |date('H:i')| default }}

Latest transactions Most recent transaction

{% for trn in transactions %} {% endfor %}
Sender Email Receiver Email Trn Amount Currency User Amount Currency Date Type Status Actions
{{ trn.sender_email }} {{ trn.receiver_email | default('') }} {{ trn.amount | number_format(2) }} {{ trn.transaction_currency }} {{ trn.user_amount | number_format(2) }} {{ trn.user_currency }} {{ trn.transaction_date | date('d-m-Y') }} {{ trn.transaction_date | date('H:i:s') }} {{ trn.type | capitalize }} {{ trn.status | trn_status }} {# #}
{% endblock %}