{% extends "base.html" %} {% block title %}Logements de fonction — GMAO{% endblock %} {% block content %}

Logements de fonction

Occupation, pièces et patrimoine technique des logements.

Nouveau logement
{% for unit in units %}

{{ unit.name }}

{{ unit.occupancy_status|replace('_',' ') }}
{{ unit.building.site.name if unit.building.site else 'Site non renseigné' }} · {{ unit.building.name }}

Occupant : {{ unit.occupant_name or 'Aucun' }}
Pièces : {{ unit.rooms.count() }}
{% else %}
Aucun logement enregistré.
{% endfor %}
{% endblock %}