{% extends 'layouts/authenticated.html.twig' %} {% block page_title %}{{ page_title }}{% endblock %} {% block content %}
{# Header #}

{{ page_title }}

{{ pagination.getTotalItemCount }} appareil(s) trouvé(s)

Codes d'Approbation
{# Statistics Cards #}
{# Total Devices #}
Total Appareils
{{ stats.total|default(0)|number_format(0, ',', ' ') }}
{{ stats.unique_users|default(0) }} utilisateur(s)
{# Trusted Devices #}
Approuvés
{{ stats.trusted|default(0)|number_format(0, ',', ' ') }}
{{ stats.untrusted|default(0) }} non approuvé(s)
{# Desktop Devices #}
Desktop
{{ stats.desktop|default(0)|number_format(0, ',', ' ') }}
{% if stats.total > 0 %} {{ ((stats.desktop / stats.total) * 100)|number_format(1) }}% {% else %} 0% {% endif %} du total
{# Mobile Devices #}
Mobile
{{ stats.mobile|default(0)|number_format(0, ',', ' ') }}
{{ stats.tablet|default(0) }} tablette(s)
{# Charts #}
{# Browser Distribution #}

Distribution des Navigateurs

{# OS Distribution #}

Distribution des Systèmes d'Exploitation

{# Filters & List #}
{# Filters #}
{# List #} {% if pagination.getTotalItemCount == 0 %}

Aucun appareil trouvé

{% else %} {# Desktop Table #} {# Mobile Cards #}
{% for device in pagination %} {% include 'admin/components/cards/devices_card.html.twig' with {item: device} %} {% endfor %}
{# Pagination #} {% if pagination.pageCount > 1 %}
{% endif %} {% endif %}
{# Chart.js #} {% endblock %}