{% extends 'Common/baseAdminPannel.html.twig' %} {% block title %} {{'Nueva' }} {{ entityName|trans }} {% endblock %} {% block body %} {% block content %} {% if error is defined %}
{{ error }}
{% else %} {{ form_start(form, {'attr':{'data-remote':'true', 'data-method':'POST', 'data-url':form.vars.action }}) }}
{{ form_row(form.proposedPaymentDate) }}
{{ form_row(form.extensionDate) }}

Detalles del acuerdo

{{ form_row(form.agreementCommunicationType) }}
{{ form_row(form.agreementDate) }}
{{ form_row(form.agreementDirection) }}
{% if form.agreementContactData is defined %}
{{ form_row(form.agreementContactData) }}
{% endif %} {% if form.agreementEmailBody is defined %}
{{ form_row(form.agreementEmailBody) }}
{% endif %} {% if form.agreementMessageSource is defined %}
{{ form_row(form.agreementMessageSource) }}
{% endif %} {% if form.agreementTextMessage is defined %}
{{ form_row(form.agreementTextMessage) }}
{% endif %}
{{ form_row(form.agreementSpecifications) }}
{{ form_end(form) }} {% endif %} {% endblock %} {% endblock %}