{% extends 'base.html.twig' %} {% block title %}Nouveau bien — {{ organization.name }} — VIIZIA{% endblock %} {% block body %} {% from 'admin/organization/_form.html.twig' import field, select_field %}

Nouveau bien immobilier

Organisation : {{ organization.name }}

{{ form_start(form, {'attr': {'novalidate': 'novalidate'}}) }} {% if form.vars.errors|length > 0 %}
Le formulaire contient des erreurs :
{% endif %}

Identification

{{ field(form.code, {'icon': 'hash'}) }}
{{ field(form.label) }}
{{ select_field(form.status) }}

Adresse

{{ field(form.addressLine1) }} {{ field(form.addressLine2) }}
{{ field(form.postalCode) }}
{{ field(form.city) }}
{{ select_field(form.country) }}

Caractéristiques

{{ field(form.surfaceM2) }}
{{ field(form.bedrooms) }}
{{ field(form.notes) }}

Comptes de facturation (import)

Optionnel — texte permettant d’attribuer automatiquement les dépenses à ce bien lors de l’import (libellé / référence bancaires).

{{ field(form.billingAccountElectricity, {'icon': 'bolt'}) }} {{ field(form.billingAccountWater, {'icon': 'tint'}) }} {{ field(form.billingAccountInternet, {'icon': 'wifi'}) }}
Annuler
{{ form_end(form) }} {% endblock %}