{% extends kimai_context.modalRequest ? 'form.html.twig' : 'base.html.twig' %} {% block main %} {% set formEditTemplate = kimai_context.modalRequest ? 'default/_form_modal.html.twig' : 'default/_form.html.twig' %} {% set formOptions = { 'title': (customer.id is null ? 'create'|trans : 'edit'|trans({}, 'actions')), 'form': form, 'back': path('admin_customer') } %} {% embed formEditTemplate with formOptions %} {% block form_body %}
{{ form_row(form.name) }}
{{ form_row(form.color) }}
{{ form_row(form.comment) }} {{ form_row(form.address) }}
{{ form_row(form.company) }}
{{ form_row(form.number) }}
{{ form_row(form.vatId) }}
{{ form_row(form.country) }}
{{ form_row(form.currency) }}
{{ form_row(form.timezone) }}
{{ form_row(form.contact) }}
{{ form_row(form.email) }}
{{ form_row(form.homepage) }}
{{ form_row(form.mobile) }}
{{ form_row(form.phone) }}
{{ form_row(form.fax) }}
{% if form.budgetType is defined %}
{% if form.budget is defined %}
{{ form_row(form.budget) }}
{% endif %} {% if form.timeBudget is defined %}
{{ form_row(form.timeBudget) }}
{% endif %}
{{ form_row(form.budgetType) }}
{% endif %} {% if form.teams is defined %}
{{ form_row(form.teams) }}
{% endif %}
{{ form_row(form.visible) }}
{{ form_row(form.billable) }}
{% if form.metaFields is defined and form.metaFields is not empty %} {{ form_row(form.metaFields) }} {% endif %} {% embed '@theme/embeds/collapsible.html.twig' with {id: 'customer_invoice_settings'} %} {% import "macros/widgets.html.twig" as widgets %} {% block title %}{{ 'invoices'|trans }}{% endblock %} {% block body %} {% if form.invoiceTemplate is defined %} {{ form_row(form.invoiceTemplate) }} {% endif %} {% if form.invoiceText is defined %} {{ form_row(form.invoiceText) }} {% endif %} {% endblock %} {% endembed %} {{ form_rest(form) }} {% endblock %} {% endembed %} {% endblock %}