{% 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': (activity.id is null ? 'create-activity'|trans : 'edit'|trans), 'form': form, 'back': path('admin_activity') } %} {% embed formEditTemplate with formOptions %} {% block form_body %}
{{ form_row(form.name) }}
{{ form_row(form.color) }}
{{ form_row(form.comment) }} {% if form.customer is defined %} {{ form_row(form.customer) }} {% endif %} {% if form.project is defined %} {{ form_row(form.project) }} {% endif %} {{ form_row(form.number) }} {% 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: 'activity_invoice_settings'} %} {% import "macros/widgets.html.twig" as widgets %} {% block title %}{{ 'invoices'|trans }}{% endblock %} {% block body %} {% if form.invoiceText is defined %} {{ form_row(form.invoiceText) }} {% endif %} {% endblock %} {% endembed %} {{ form_rest(form) }} {% endblock %} {% endembed %} {% endblock %}