{% extends "admin/baseAdmin.html.twig" %} {% block title %}administration - Le migennois{% endblock %} {% block body %}

Villes

Vous avez {{ villes|length }} ville(s)
Nom
Action
{% for ville in villes %}
{{ville.Nom}}
{% endfor %}

Offres d'emploi

Vous avez {{ offreEmplois|length }} offre(s) d'emploi
Titre
Ville
Entreprise
Action
{% for offreEmploi in offreEmplois %}
{{ offreEmploi.titre }}
{{ offreEmploi.ville.nom }}
{{ offreEmploi.nomEntreprise}}
{% endfor %}

Reprise d'activité

Vous avez {{ repriseActivites|length }} reprise(s) d'activité
Titre
Ville
Entreprise
Action
{% for repriseActivite in repriseActivites %}
{{ repriseActivite.titre }}
{{ repriseActivite.ville.nom }}
{{ repriseActivite.nomEntreprise}}
{% endfor %}

Offres immobilière

Vous avez {{ offreImmobilieres|length }} offre(s) immobilière
Titre
Ville
description
Action
{% for offreImmobiliere in offreImmobilieres %}
{{ offreImmobiliere.titre }}
{{ offreImmobiliere.ville.nom }}
{{ offreImmobiliere.description}}
{% endfor %}
{% endblock %}