forked from ScoDoc/ScoDoc
ajout file d'ariane
This commit is contained in:
parent
9f7d6a3020
commit
ec987ad8fa
@ -1,28 +1,37 @@
|
|||||||
.nav-entreprise>ul {
|
.nav-entreprise {
|
||||||
padding-left: 0;
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-entreprise ul {
|
||||||
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-entreprise li{
|
.nav-entreprise li{
|
||||||
list-style: none;
|
list-style: none;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
|
border: 2px black solid;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-entreprise li:hover{
|
||||||
|
background-color: rgb(212, 212, 212);
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-entreprise>ul>li>a {
|
.nav-entreprise>ul>li>a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: black;
|
color: black;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.nav-entreprise>ul>li>a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-error {
|
.form-error {
|
||||||
color: #a94442;
|
color: #a94442;
|
||||||
}
|
}
|
||||||
|
|
||||||
.nav-entreprise>ul>li>a:hover {
|
|
||||||
color: red;
|
|
||||||
}
|
|
||||||
|
|
||||||
.boutons .btn {
|
.boutons .btn {
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
margin-bottom: 5px;
|
margin-bottom: 5px;
|
||||||
@ -133,5 +142,34 @@
|
|||||||
|
|
||||||
.title-form-error {
|
.title-form-error {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
color: #a94442
|
color: #a94442;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumbs {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumbs_item {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumbs_item:not(:last-of-type)::after {
|
||||||
|
content: '\203a';
|
||||||
|
margin: 0 5px;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumbs_link {
|
||||||
|
text-decoration: none;
|
||||||
|
color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumbs_link:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.breadcrumbs_link-active {
|
||||||
|
color: #333;
|
||||||
|
font-weight: bold;
|
||||||
}
|
}
|
@ -9,7 +9,21 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
<div class="container" style="margin-bottom: 10px;">
|
<div class="container">
|
||||||
|
<ul class="breadcrumbs">
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.index') }}" class="breadcrumbs_link">Entreprises</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise_id) }}" class="breadcrumbs_link">Fiche entreprise</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="" class="breadcrumbs_link breadcrumbs_link-active">Contacts</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="container" style="margin-bottom: 10px;">
|
||||||
<h1>Liste des contacts</h1>
|
<h1>Liste des contacts</h1>
|
||||||
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %}
|
||||||
<a class="btn btn-primary" style="margin-bottom:10px;" href="{{ url_for('entreprises.add_contact', id=entreprise_id) }}">Ajouter contact</a>
|
<a class="btn btn-primary" style="margin-bottom:10px;" href="{{ url_for('entreprises.add_contact', id=entreprise_id) }}">Ajouter contact</a>
|
||||||
|
@ -9,6 +9,17 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
|
<div class="container">
|
||||||
|
<ul class="breadcrumbs">
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.index') }}" class="breadcrumbs_link">Entreprises</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="" class="breadcrumbs_link breadcrumbs_link-active">Fiche entreprise</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% if logs %}
|
{% if logs %}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3>Dernières opérations sur cette fiche <a href="{{ url_for('entreprises.logs_entreprise', id=entreprise.id) }}">Voir tout</a></h3>
|
<h3>Dernières opérations sur cette fiche <a href="{{ url_for('entreprises.logs_entreprise', id=entreprise.id) }}">Voir tout</a></h3>
|
||||||
@ -55,7 +66,7 @@
|
|||||||
<div class="taxe-apprentissage">
|
<div class="taxe-apprentissage">
|
||||||
<ul id="liste-taxes-apprentissages">
|
<ul id="liste-taxes-apprentissages">
|
||||||
{% if not taxes|check_taxe_now %}
|
{% if not taxes|check_taxe_now %}
|
||||||
<li>année actuelle : non versé</li>
|
<li>année actuelle : non versée</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% for taxe in taxes %}
|
{% for taxe in taxes %}
|
||||||
<li>
|
<li>
|
||||||
|
@ -7,130 +7,143 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
<h1>{{ title }}</h1>
|
<div class="container">
|
||||||
<br>
|
<ul class="breadcrumbs">
|
||||||
<div>
|
<li class="breadcrumbs_item">
|
||||||
<a href="{{ url_for('entreprises.get_import_donnees_file_sample') }}">Obtenir la feuille excel à remplir</a>
|
<a href="{{ url_for('entreprises.index') }}" class="breadcrumbs_link">Entreprises</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="" class="breadcrumbs_link breadcrumbs_link-active">Importation données</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
|
||||||
<div class="row">
|
<div class="container">
|
||||||
<div class="col-md-4">
|
<h1>{{ title }}</h1>
|
||||||
<p>
|
<br>
|
||||||
(*) champs requis
|
<div>
|
||||||
</p>
|
<a href="{{ url_for('entreprises.get_import_donnees_file_sample') }}">Obtenir la feuille excel à remplir</a>
|
||||||
{{ wtf.quick_form(form, novalidate=True) }}
|
</div>
|
||||||
|
<br>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-4">
|
||||||
|
<p>
|
||||||
|
(*) champs requis
|
||||||
|
</p>
|
||||||
|
{{ wtf.quick_form(form, novalidate=True) }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
|
|
||||||
{% if not entreprises_import and not sites_import and not correspondants_import %}
|
{% if not entreprises_import and not sites_import and not correspondants_import %}
|
||||||
<div>Feuille Entreprises</div>
|
<div>Feuille Entreprises</div>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
||||||
<tr><td>siret (*)</td><td>text</td><td>siret de l'entreprise</td></tr>
|
<tr><td>siret (*)</td><td>text</td><td>siret de l'entreprise</td></tr>
|
||||||
<tr><td>nom_entreprise (*)</td><td>text</td><td>nom de l'entreprise</td></tr>
|
<tr><td>nom_entreprise (*)</td><td>text</td><td>nom de l'entreprise</td></tr>
|
||||||
<tr><td>adresse (*)</td><td>text</td><td>adresse de l'entreprise</td></tr>
|
<tr><td>adresse (*)</td><td>text</td><td>adresse de l'entreprise</td></tr>
|
||||||
<tr><td>ville (*)</td><td>text</td><td>ville de l'entreprise</td></tr>
|
<tr><td>ville (*)</td><td>text</td><td>ville de l'entreprise</td></tr>
|
||||||
<tr><td>code_postal (*)</td><td>text</td><td>code postal de l'entreprise</td></tr>
|
<tr><td>code_postal (*)</td><td>text</td><td>code postal de l'entreprise</td></tr>
|
||||||
<tr><td>pays</td><td>text</td><td>pays de l'entreprise</td></tr>
|
<tr><td>pays</td><td>text</td><td>pays de l'entreprise</td></tr>
|
||||||
</table>
|
</table>
|
||||||
<div>Feuille Sites</div>
|
<div>Feuille Sites</div>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
||||||
<tr><td>siret_entreprise (*)</td><td>text</td><td>siret de l'entreprise</td></tr>
|
<tr><td>siret_entreprise (*)</td><td>text</td><td>siret de l'entreprise</td></tr>
|
||||||
<tr><td>id_site (*)</td><td>text</td><td>id du site (ne rien remplir pour créer un site)</td></tr>
|
<tr><td>id_site (*)</td><td>text</td><td>id du site (ne rien remplir pour créer un site)</td></tr>
|
||||||
<tr><td>nom_site (*)</td><td>text</td><td>nom du site</td></tr>
|
<tr><td>nom_site (*)</td><td>text</td><td>nom du site</td></tr>
|
||||||
<tr><td>adresse (*)</td><td>text</td><td>adresse du site</td></tr>
|
<tr><td>adresse (*)</td><td>text</td><td>adresse du site</td></tr>
|
||||||
<tr><td>ville (*)</td><td>text</td><td>ville du site</td></tr>
|
<tr><td>ville (*)</td><td>text</td><td>ville du site</td></tr>
|
||||||
<tr><td>code_postal (*)</td><td>text</td><td>code postal du site</td></tr>
|
<tr><td>code_postal (*)</td><td>text</td><td>code postal du site</td></tr>
|
||||||
<tr><td>pays (*)</td><td>text</td><td>pays du site</td></tr>
|
<tr><td>pays (*)</td><td>text</td><td>pays du site</td></tr>
|
||||||
|
|
||||||
</table>
|
</table>
|
||||||
<div>Feuille Correspondants (à utiliser pour les modifications)</div>
|
<div>Feuille Correspondants (à utiliser pour les modifications)</div>
|
||||||
<table class="table">
|
<table class="table">
|
||||||
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
<thead><tr><td><b>Attribut</b></td><td><b>Type</b></td><td><b>Description</b></td></tr></thead>
|
||||||
<tr><td>civilite (*)</td><td>text</td><td>civilite du correspondant (H ou F)</td></tr>
|
<tr><td>civilite (*)</td><td>text</td><td>civilite du correspondant (H ou F)</td></tr>
|
||||||
<tr><td>nom (*)</td><td>text</td><td>nom du correspondant</td></tr>
|
<tr><td>nom (*)</td><td>text</td><td>nom du correspondant</td></tr>
|
||||||
<tr><td>prenom (*)</td><td>text</td><td>prenom du correspondant</td></tr>
|
<tr><td>prenom (*)</td><td>text</td><td>prenom du correspondant</td></tr>
|
||||||
<tr><td>telephone (*)</td><td>text</td><td>telephone du correspondant</td></tr>
|
<tr><td>telephone (*)</td><td>text</td><td>telephone du correspondant</td></tr>
|
||||||
<tr><td>mail (*)</td><td>text</td><td>mail du correspondant</td></tr>
|
<tr><td>mail (*)</td><td>text</td><td>mail du correspondant</td></tr>
|
||||||
<tr><td>poste</td><td>text</td><td>poste du correspondant</td></tr>
|
<tr><td>poste</td><td>text</td><td>poste du correspondant</td></tr>
|
||||||
<tr><td>service</td><td>text</td><td>service dans lequel travaille le correspondant</td></tr>
|
<tr><td>service</td><td>text</td><td>service dans lequel travaille le correspondant</td></tr>
|
||||||
<tr><td>origine</td><td>text</td><td>origine du correspondant</td></tr>
|
<tr><td>origine</td><td>text</td><td>origine du correspondant</td></tr>
|
||||||
<tr><td>notes</td><td>text</td><td>notes sur le correspondant</td></tr>
|
<tr><td>notes</td><td>text</td><td>notes sur le correspondant</td></tr>
|
||||||
<tr><td>nom_site</td><td>text</td><td>nom du site lié au correspondant</td></tr>
|
<tr><td>nom_site</td><td>text</td><td>nom du site lié au correspondant</td></tr>
|
||||||
</table>
|
</table>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if entreprises_import %}
|
{% if entreprises_import %}
|
||||||
<br><div>Importation de {{ entreprises_import|length }} entreprise(s)</div>
|
<br><div>Importation de {{ entreprises_import|length }} entreprise(s)</div>
|
||||||
{% for entreprise in entreprises_import %}
|
{% for entreprise in entreprises_import %}
|
||||||
<div class="entreprise">
|
<div class="entreprise">
|
||||||
<div>
|
<div>
|
||||||
SIRET : {{ entreprise.siret }}<br>
|
SIRET : {{ entreprise.siret }}<br>
|
||||||
Nom : {{ entreprise.nom }}<br>
|
Nom : {{ entreprise.nom }}<br>
|
||||||
Adresse : {{ entreprise.adresse }}<br>
|
Adresse : {{ entreprise.adresse }}<br>
|
||||||
Code postal : {{ entreprise.codepostal }}<br>
|
Code postal : {{ entreprise.codepostal }}<br>
|
||||||
Ville : {{ entreprise.ville }}<br>
|
Ville : {{ entreprise.ville }}<br>
|
||||||
Pays : {{ entreprise.pays }}<br>
|
Pays : {{ entreprise.pays }}<br>
|
||||||
<a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise.id) }}" target="_blank">Fiche entreprise</a>
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise.id) }}" target="_blank">Fiche entreprise</a>
|
||||||
</div>
|
|
||||||
{% for site in entreprise.sites %}
|
|
||||||
<div class="site">
|
|
||||||
Nom : {{ site.nom }}<br>
|
|
||||||
Adresse : {{ site.adresse }}<br>
|
|
||||||
Code postal : {{ site.codepostal }}<br>
|
|
||||||
Ville : {{ site.ville }}<br>
|
|
||||||
Pays : {{ site.pays }}
|
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% for site in entreprise.sites %}
|
||||||
</div>
|
<div class="site">
|
||||||
{% endfor %}
|
Nom : {{ site.nom }}<br>
|
||||||
{% endif %}
|
Adresse : {{ site.adresse }}<br>
|
||||||
|
Code postal : {{ site.codepostal }}<br>
|
||||||
{% if sites_import %}
|
Ville : {{ site.ville }}<br>
|
||||||
<br><div>Importation de {{ sites_import|length }} site(s)</div>
|
Pays : {{ site.pays }}
|
||||||
{% for site in sites_import %}
|
</div>
|
||||||
<div class="site">
|
{% endfor %}
|
||||||
Nom : {{ site.nom }}<br>
|
|
||||||
Adresse : {{ site.adresse }}<br>
|
|
||||||
Code postal : {{ site.codepostal }}<br>
|
|
||||||
Ville : {{ site.ville }}<br>
|
|
||||||
Pays : {{ site.pays }}<br>
|
|
||||||
<a href="{{ url_for('entreprises.fiche_entreprise', id=site.entreprise_id) }}" target="_blank">Fiche entreprise</a>
|
|
||||||
</div>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if correspondants_import %}
|
|
||||||
<br><div>Importation de {{ correspondants_import|length }} correspondant(s)</div>
|
|
||||||
{% for correspondant in correspondants_import %}
|
|
||||||
<div class="correspondant">
|
|
||||||
<div>
|
|
||||||
Civilité : {{ correspondant.civilite|get_civilité }}<br>
|
|
||||||
Nom : {{ correspondant.nom }}<br>
|
|
||||||
Prénom : {{ correspondant.prenom }}<br>
|
|
||||||
{% if correspondant.telephone %}
|
|
||||||
Téléphone : {{ correspondant.telephone }}<br>
|
|
||||||
{% endif %}
|
|
||||||
{% if correspondant.mail %}
|
|
||||||
Mail : {{ correspondant.mail }}<br>
|
|
||||||
{% endif %}
|
|
||||||
{% if correspondant.poste %}
|
|
||||||
Poste : {{ correspondant.poste }}<br>
|
|
||||||
{% endif %}
|
|
||||||
{% if correspondant.service %}
|
|
||||||
Service : {{ correspondant.service }}<br>
|
|
||||||
{% endif %}
|
|
||||||
{% if correspondant.origine %}
|
|
||||||
Origine : {{ correspondant.origine }}<br>
|
|
||||||
{% endif %}
|
|
||||||
{% if correspondant.notes %}
|
|
||||||
Notes : {{ correspondant.notes }}<br>
|
|
||||||
{% endif %}
|
|
||||||
<a href="{{ url_for('entreprises.fiche_entreprise', id=correspondant.entreprise_id) }}" target="_blank">Fiche entreprise</a>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
{% endfor %}
|
||||||
{% endfor %}
|
{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
{% if sites_import %}
|
||||||
|
<br><div>Importation de {{ sites_import|length }} site(s)</div>
|
||||||
|
{% for site in sites_import %}
|
||||||
|
<div class="site">
|
||||||
|
Nom : {{ site.nom }}<br>
|
||||||
|
Adresse : {{ site.adresse }}<br>
|
||||||
|
Code postal : {{ site.codepostal }}<br>
|
||||||
|
Ville : {{ site.ville }}<br>
|
||||||
|
Pays : {{ site.pays }}<br>
|
||||||
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=site.entreprise_id) }}" target="_blank">Fiche entreprise</a>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
|
||||||
|
{% if correspondants_import %}
|
||||||
|
<br><div>Importation de {{ correspondants_import|length }} correspondant(s)</div>
|
||||||
|
{% for correspondant in correspondants_import %}
|
||||||
|
<div class="correspondant">
|
||||||
|
<div>
|
||||||
|
Civilité : {{ correspondant.civilite|get_civilité }}<br>
|
||||||
|
Nom : {{ correspondant.nom }}<br>
|
||||||
|
Prénom : {{ correspondant.prenom }}<br>
|
||||||
|
{% if correspondant.telephone %}
|
||||||
|
Téléphone : {{ correspondant.telephone }}<br>
|
||||||
|
{% endif %}
|
||||||
|
{% if correspondant.mail %}
|
||||||
|
Mail : {{ correspondant.mail }}<br>
|
||||||
|
{% endif %}
|
||||||
|
{% if correspondant.poste %}
|
||||||
|
Poste : {{ correspondant.poste }}<br>
|
||||||
|
{% endif %}
|
||||||
|
{% if correspondant.service %}
|
||||||
|
Service : {{ correspondant.service }}<br>
|
||||||
|
{% endif %}
|
||||||
|
{% if correspondant.origine %}
|
||||||
|
Origine : {{ correspondant.origine }}<br>
|
||||||
|
{% endif %}
|
||||||
|
{% if correspondant.notes %}
|
||||||
|
Notes : {{ correspondant.notes }}<br>
|
||||||
|
{% endif %}
|
||||||
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=correspondant.entreprise_id) }}" target="_blank">Fiche entreprise</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
@ -2,6 +2,17 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
|
<div class="container">
|
||||||
|
<ul class="breadcrumbs">
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.index') }}" class="breadcrumbs_link">Entreprises</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="" class="breadcrumbs_link breadcrumbs_link-active">Dernières opérations</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3>Dernières opérations</h3>
|
<h3>Dernières opérations</h3>
|
||||||
{% if logs.items %}
|
{% if logs.items %}
|
||||||
|
@ -2,6 +2,20 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
|
<div class="container">
|
||||||
|
<ul class="breadcrumbs">
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.index') }}" class="breadcrumbs_link">Entreprises</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise.id) }}" class="breadcrumbs_link">Fiche entreprise</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="" class="breadcrumbs_link breadcrumbs_link-active">Dernières opérations</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h3>Dernières opérations - {{ entreprise.nom }}</h3>
|
<h3>Dernières opérations - {{ entreprise.nom }}</h3>
|
||||||
{% if logs.items %}
|
{% if logs.items %}
|
||||||
|
@ -1,14 +1,16 @@
|
|||||||
{# -*- mode: jinja-html -*- #}
|
{# -*- mode: jinja-html -*- #}
|
||||||
<nav class="nav-entreprise">
|
<div class="container">
|
||||||
<ul>
|
<nav class="nav-entreprise">
|
||||||
<li><a href="{{ url_for('entreprises.index') }}">Entreprises</a></li>
|
<ul>
|
||||||
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesCorrespondants, None) %}
|
<li><a href="{{ url_for('entreprises.index') }}">Entreprises</a></li>
|
||||||
<li><a href="{{ url_for('entreprises.correspondants') }}">Correspondants</a></li>
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesCorrespondants, None) %}
|
||||||
{% endif %}
|
<li><a href="{{ url_for('entreprises.correspondants') }}">Correspondants</a></li>
|
||||||
<li><a href="{{ url_for('entreprises.offres_recues') }}">Offres reçues</a></li>
|
{% endif %}
|
||||||
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesValidate, None) %}
|
<li><a href="{{ url_for('entreprises.offres_recues') }}">Offres reçues</a></li>
|
||||||
<li><a href="{{ url_for('entreprises.validation') }}">Entreprises à valider</a></li>
|
{% if current_user.has_permission(current_user.Permission.RelationsEntreprisesValidate, None) %}
|
||||||
<li><a href="{{ url_for('entreprises.preferences') }}">Préférences</a></li>
|
<li><a href="{{ url_for('entreprises.validation') }}">Entreprises à valider</a></li>
|
||||||
{% endif %}
|
<li><a href="{{ url_for('entreprises.preferences') }}">Préférences</a></li>
|
||||||
</ul>
|
{% endif %}
|
||||||
</nav>
|
</ul>
|
||||||
|
</nav>
|
||||||
|
</div>
|
@ -2,6 +2,20 @@
|
|||||||
{% extends 'base.html' %}
|
{% extends 'base.html' %}
|
||||||
|
|
||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
|
<div class="container">
|
||||||
|
<ul class="breadcrumbs">
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.index') }}" class="breadcrumbs_link">Entreprises</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="{{ url_for('entreprises.fiche_entreprise', id=entreprise.id) }}" class="breadcrumbs_link">Fiche entreprise</a>
|
||||||
|
</li>
|
||||||
|
<li class="breadcrumbs_item">
|
||||||
|
<a href="" class="breadcrumbs_link breadcrumbs_link-active">Offres expirées</a>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h1>Offres expirées - {{ entreprise.nom }}</h1>
|
<h1>Offres expirées - {{ entreprise.nom }}</h1>
|
||||||
{% if offres_expirees %}
|
{% if offres_expirees %}
|
||||||
|
@ -5,11 +5,13 @@
|
|||||||
{% block app_content %}
|
{% block app_content %}
|
||||||
{% include 'entreprises/nav.html' %}
|
{% include 'entreprises/nav.html' %}
|
||||||
|
|
||||||
<h1>Préférences module gestion entreprises</h1>
|
<div class="container">
|
||||||
<br>
|
<h1>Préférences module gestion entreprises</h1>
|
||||||
<div class="row">
|
<br>
|
||||||
<div class="col-md-4">
|
<div class="row">
|
||||||
{{ wtf.quick_form(form, novalidate=True) }}
|
<div class="col-md-4">
|
||||||
|
{{ wtf.quick_form(form, novalidate=True) }}
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endblock %}
|
{% endblock %}
|
Loading…
Reference in New Issue
Block a user