{# Each field type is rendered by a template fragment, which is determined by the name of your form type class (DateTimePickerType -> date_time_picker) and the suffix "_widget". This can be controlled by overriding getBlockPrefix() in DateTimePickerType. See https://symfony.com/doc/current/form/create_custom_field_type.html#creating-the-form-type-template #} {% block date_time_picker_widget %}
{{ block('datetime_widget') }}
{% endblock %} {% block tags_input_widget %}
{{ form_widget(form, {'attr': {'data-toggle': 'tagsinput', 'data-tags': tags|json_encode}}) }}
{% endblock %} {% block rejection_reasons_input_widget %}
{{ form_widget(form, {'attr': {'data-toggle': 'tagsinput', 'data-tags': rejectionReasons|json_encode}}) }}
{% endblock %} {% block address_widget %}
{{ form_row(form.street) }}
{{ form_row(form.city) }}
{{ form_row(form.postalCode) }}
{{ form_row(form.country) }}
{% endblock %} {#{% block _contract_contractAttachements_widget %}#} {# #} {# #} {#{% endblock %}#} {#{% block _contract_owner_widget %}#} {# #} {# #} {#{% endblock %}#} {#{% block extra_option_widget %}#} {#
#} {#
#} {#
#} {#
#} {# {{ form_row(form.type) }}#} {#
#} {#
#} {# {{ form_row(form.dueDate) }}#} {#
#} {#
#} {# {{ form_row(form.reminderDate) }}#} {#
#} {#
#} {#
#} {#
#} {#{% endblock %}#}