{% extends 'base.html.twig' %} {% block title %} Société {{ societe.nomSociete }} {% endblock %} {% block body %} {# {% include 'app/modal.html.twig' %} #}

Société {{ societe.nomSociete }} représentée par {{ societe.nomContact }}

Vous pouvez ici gérer vos projets.

{% set erreurs ="" %} {% if societe.adresseFacturationSocietes|length == 0 %} {% set erreurs = erreurs ~ "- Il manque à minima une adresse de facturation. " %} {% endif %} {% if societe.siren == null %} {% set erreurs = erreurs ~ "- Votre SIREN est nul." %} {% endif %} {% if erreurs != null %} {% include 'app/societeIncomplete.html.twig' %} {% endif %}

Vos projets

{% if projets|length > 0 %} {% for projet in projets %}
# Projets
{{ projet.nom }} ({{ projet.prestations|length }} prestation{% if projet.prestations|length > 1%}s{% endif %})
{% endfor %} {% else %} {% include 'app/noResult.html.twig' %} {% endif %}
{% endblock %}{% block javascripts %} {% endblock %}