{# -*- mode: jinja-html -*- #} {% extends 'base.html' %} {% block app_content %} {% if logs %}

Dernières opérations sur cette fiche

{% endif %} {% if historique %}

Historique

{% endif %}

Fiche entreprise - {{ entreprise.nom }} ({{ entreprise.siret }})

SIRET : {{ entreprise.siret }}
Nom : {{ entreprise.nom }}
Adresse : {{ entreprise.adresse }}
Code postal : {{ entreprise.codepostal }}
Ville : {{ entreprise.ville }}
Pays : {{ entreprise.pays }}

{% if contacts %}

Contacts

{% for contact in contacts %} {% include 'entreprises/_contact.html' %} {% endfor %}
{% endif %} {% if offres %}

Offres

{% for offre in offres %} {% include 'entreprises/_offre.html' %} {% endfor %}
{% endif %}
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
Modifier Supprimer Ajouter offre Ajouter contact Ajouter historique Voir les offres expirées
{% endif %}
{% endblock %}