25 lines
893 B
Twig
25 lines
893 B
Twig
{% extends 'base.html.twig' %}
|
|
{% import "macros/widgets.html.twig" as widgets %}
|
|
{% import "macros/datatables.html.twig" as tables %}
|
|
|
|
{% block page_title %}{{ 'admin_project.title'|trans }}{% endblock %}
|
|
{% block page_subtitle %}{{ 'admin_project.subtitle'|trans }}{% endblock %}
|
|
|
|
{% block main %}
|
|
|
|
{% set params = {
|
|
'%project%': '<strong>' ~ project.name ~ '</strong>',
|
|
'%customer%': '<strong>' ~ project.customer.name ~ '</strong>',
|
|
'%records%': '<strong>' ~ stats.recordAmount ~ '</strong>',
|
|
'%activities%': '<strong>' ~ stats.activityAmount ~ '</strong>',
|
|
'%duration%': '<strong>' ~ stats.recordDuration|duration ~ '</strong>'
|
|
} %}
|
|
|
|
{{ include('default/_form_delete.html.twig', {
|
|
'message': "admin_project.delete_confirm"|trans(params)|raw,
|
|
'form': form,
|
|
'back': path('admin_project')
|
|
}) }}
|
|
|
|
{% endblock %}
|