diff --git a/app/entreprises/routes.py b/app/entreprises/routes.py index e3226c712..547d20511 100644 --- a/app/entreprises/routes.py +++ b/app/entreprises/routes.py @@ -53,10 +53,7 @@ def index(): """ Permet d'afficher une page avec la liste des entreprises et une liste des dernières opérations """ - page = request.args.get("page", 1, type=int) - entreprises = Entreprise.query.filter_by(visible=True).paginate( - page=page, per_page=10 - ) + entreprises = Entreprise.query.filter_by(visible=True) logs = EntrepriseLog.query.order_by(EntrepriseLog.date.desc()).limit(LOGS_LEN).all() return render_template( "entreprises/entreprises.html", @@ -103,12 +100,10 @@ def contacts(): """ Permet d'afficher une page la liste des contacts et une liste des dernières opérations """ - page = request.args.get("page", 1, type=int) contacts = ( db.session.query(EntrepriseContact, Entreprise) .join(Entreprise, EntrepriseContact.entreprise_id == Entreprise.id) .filter_by(visible=True) - .paginate(page=page, per_page=10) ) logs = EntrepriseLog.query.order_by(EntrepriseLog.date.desc()).limit(LOGS_LEN).all() return render_template( @@ -902,7 +897,7 @@ def import_entreprises(): entreprises_import = [] siret_list = [] ligne = 0 - titles = ["siret", "nom_entreprise", "adresse", "ville", "codepostal", "pays"] + titles = ["siret", "nom", "adresse", "ville", "code_postal", "pays"] if data[1][0] != titles: flash("Veuillez utilisez la feuille excel à remplir") return render_template( diff --git a/app/templates/entreprises/contacts.html b/app/templates/entreprises/contacts.html index 7ee982f76..7830f83a2 100644 --- a/app/templates/entreprises/contacts.html +++ b/app/templates/entreprises/contacts.html @@ -1,6 +1,13 @@ {# -*- mode: jinja-html -*- #} {% extends 'base.html' %} +{% block styles %} +{{super()}} + + + +{% endblock %} + {% block app_content %} {% include 'entreprises/nav.html' %} @@ -19,63 +26,77 @@ {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) %} Importer des contacts {% endif %} - {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) and contacts.items %} + {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesExport, None) and contacts %} Exporter la liste des contacts {% endif %}
Nom | -Prenom | -Telephone | -Poste | -Service | -Entreprise | +Nom | +Prenom | +Telephone | +Poste | +Service | +Entreprise | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ contact[0].nom }} | -{{ contact[0].prenom }} | -{{ contact[0].telephone }} | -{{ contact[0].mail }} | -{{ contact[0].poste}} | -{{ contact[0].service}} | -{{ contact[1].nom }} | +|||||||
{{ contact[0].nom }} | +{{ contact[0].prenom }} | +{{ contact[0].telephone }} | +{{ contact[0].mail }} | +{{ contact[0].poste}} | +{{ contact[0].service}} | +{{ contact[1].nom }} |
- Page {{ contacts.page }} sur {{ contacts.pages }} -
- {% else %} -SIRET | -Nom | -Adresse | -Code postal | -Ville | -Pays | +SIRET | +Nom | +Adresse | +Code postal | +Ville | +Pays | {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %} -Action | +Action | {% endif %}
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ entreprise.siret }} | -{{ entreprise.nom }} | -{{ entreprise.adresse }} | -{{ entreprise.codepostal }} | -{{ entreprise.ville }} | -{{ entreprise.pays }} | +||||||||
{{ entreprise.siret }} | +{{ entreprise.nom }} | +{{ entreprise.adresse }} | +{{ entreprise.codepostal }} | +{{ entreprise.ville }} | +{{ entreprise.pays }} | {% if current_user.has_permission(current_user.Permission.RelationsEntreprisesChange, None) %} -+ |
Action
-
-
+ |
{% endif %}
- Page {{ entreprises.page }} sur {{ entreprises.pages }} -
- {% else %} -SIRET | -Nom | -Adresse | -Code postal | -Ville | -Pays | -Action | +SIRET | +Nom | +Adresse | +Code postal | +Ville | +Pays | +Action |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ entreprise.siret }} | -{{ entreprise.nom }} | -{{ entreprise.adresse }} | -{{ entreprise.codepostal }} | -{{ entreprise.ville }} | -{{ entreprise.pays }} | -- Voir - | +|||||||
{{ entreprise.siret }} | +{{ entreprise.nom }} | +{{ entreprise.adresse }} | +{{ entreprise.codepostal }} | +{{ entreprise.ville }} | +{{ entreprise.pays }} | ++ Voir + | +|||||||
SIRET | +Nom | +Adresse | +Code postal | +Ville | +Pays | +Action |