29 lines
1.1 KiB
Twig
29 lines
1.1 KiB
Twig
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
|
{% import "customer/actions.html.twig" as actions %}
|
|
|
|
{% block page_title %}{{ 'admin_customer.title'|trans }}{% endblock %}
|
|
{% block page_actions %}{{ actions.customer(customer, 'delete') }}{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
{% set inUse = (stats.recordAmount > 0) %}
|
|
|
|
{% set params = {
|
|
'%activity%': '<strong>' ~ stats.activityAmount ~ '</strong>',
|
|
'%project%': '<strong>' ~ stats.projectAmount ~ '</strong>',
|
|
'%customer%': '<strong>' ~ customer.name ~ '</strong>',
|
|
'%records%': '<strong>' ~ stats.recordAmount ~ '</strong>',
|
|
'%duration%': '<strong>' ~ stats.recordDuration|duration ~ '</strong>'
|
|
} %}
|
|
|
|
{% set message = '<p>' ~ ("admin_customer.short_stats"|trans(params)|raw) ~ '</p><p>' ~ ("admin_entity.delete_confirm"|trans|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_customer')
|
|
}) }}
|
|
|
|
{% endblock %}
|