{# -*- mode: jinja-html -*- #} {% extends 'base.html' %} {% block styles %} {{super()}} {% endblock %} {% block app_content %} {% include 'entreprises/nav.html' %} {% if logs %}

Dernières opérations Voir tout

{% endif %}
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %} Ajouter une entreprise {% endif %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) %} Importer des données {% endif %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) and entreprises %} Exporter des données {% endif %}

Liste des entreprises

{% if form %}
{{ form.hidden_tag() }} {{ form.active.label }} {{ form.association.label }}
{% endif %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %} {% endif %} {% for entreprise in entreprises %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %} {% endif %} {% endfor %} {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %} {% endif %}
SIRET Nom Adresse Code postal Ville PaysAction
{{ entreprise.siret }} {{ entreprise.nom }} {{ entreprise.adresse }} {{ entreprise.codepostal }} {{ entreprise.ville }} {{ entreprise.pays }}
Action
SIRET Nom Adresse Code postal Ville PaysAction
{% endblock %}