27 lines
911 B
Twig
27 lines
911 B
Twig
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "macros/datatables.html.twig" as tables %}
|
|
|
|
{% block page_title %}{{ 'admin_user.title'|trans }}{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
{% set inUse = (stats.recordsTotal > 0) %}
|
|
|
|
{% set params = {
|
|
'%user%': '<strong>' ~ widgets.username(user) ~ '</strong>',
|
|
'%records%': '<strong>' ~ stats.recordsTotal ~ '</strong>',
|
|
'%duration%': '<strong>' ~ stats.durationTotal|duration ~ '</strong>'
|
|
} %}
|
|
|
|
{% set message = '<p>' ~ ("admin_user.short_stats"|trans(params)|raw) ~ '</p>' %}
|
|
|
|
{{ include(app.request.xmlHttpRequest ? 'default/_form_delete_modal.html.twig' : 'default/_form_delete.html.twig', {
|
|
'message': message|raw,
|
|
'form': form,
|
|
'used': inUse,
|
|
'back': path('admin_user')
|
|
}) }}
|
|
|
|
{% endblock %}
|