13 lines
501 B
Twig
13 lines
501 B
Twig
{% extends app.request.xmlHttpRequest ? 'form.html.twig' : 'base.html.twig' %}
|
|
|
|
{% block page_title %}{{ 'timesheet.title'|trans }}{% endblock %}
|
|
{% block page_subtitle %}{{ 'timesheet.subtitle'|trans }}{% endblock %}
|
|
|
|
{% block main %}
|
|
{{ include(app.request.xmlHttpRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig', {
|
|
'title': (entry.id ? 'timesheet.edit'|trans : 'create'|trans),
|
|
'form': form,
|
|
'back': path('admin_timesheet')
|
|
}) }}
|
|
{% endblock %}
|