{% extends 'base.html.twig' %} {% block title %}{{ property.code }} — Édition — VIIZIA{% endblock %} {% block body %} {% from 'admin/organization/_form.html.twig' import field, select_field %} {% set organization = property.organization %}

{{ property.getDisplayName() }}

{{ property.status.label }} {% if property.city %}· {{ property.city }}{% endif %} {% if property.surfaceM2 %}· {{ property.surfaceM2 }} m²{% endif %}

{{ 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)

Saisissez exactement une portion du texte utilisé par votre banque (libellé et/ou colonne référence du CSV ou du PDF). Seules les dépenses (montants sortants) peuvent être rattachées automatiquement à ce bien.

{{ field(form.billingAccountElectricity, {'icon': 'bolt'}) }} {{ field(form.billingAccountWater, {'icon': 'tint'}) }} {{ field(form.billingAccountInternet, {'icon': 'wifi'}) }}
{{ form_end(form) }}
{% include 'admin/property/_platform_listings_section.html.twig' with { platform_listings: platform_listings|default([]), property: property, } only %}
{% block javascripts %} {{ parent() }} {% endblock %} {% endblock %}