{% extends 'backend/basic/base_admin.html.twig' %} {% block title %} Visiteurs {% endblock %} {% block body %}

Visiteurs

Liste Visiteurs
{% for geolocation in geolocations %} {% endfor %}
ID IP Date Drapeau Pays Arrondissement Ville
{{ geolocation.getId() }} {{ geolocation.getIp() }} {{ geolocation.getDateAdd()|date("d/m/Y H:i:s") }} {{ geolocation.getCountryEmoji() }} {{ geolocation.getCountryName() }} {{ geolocation.getDistrict() }} {{ geolocation.getCity() }}
{% endblock %}