2021-12-29 14:41:33 +01:00
{# -*- mode: jinja-html -*- #}
2021-12-24 16:07:36 +01:00
{% extends 'base.html' %}
{% block app_content %}
2022-02-02 19:13:50 +01:00
{% include 'entreprises/nav.html' %}
2022-01-31 18:22:54 +01:00
< div class = "container" >
2022-02-08 16:40:32 +01:00
< h1 > Offres reçues< / h1 >
2022-02-01 18:35:48 +01:00
{% if offres_recues %}
2022-08-16 18:34:08 +02:00
{% for envoi_offre, offre, files, correspondant in offres_recues %}
2022-02-14 19:42:17 +01:00
< div class = "offre offre-recue" >
2022-04-20 22:37:04 +02:00
< div style = "word-break:break-all; text-align: justify;" >
2022-08-16 18:34:08 +02:00
Envoyé le {{ envoi_offre.date_envoi.strftime('%d/%m/%Y') }} à {{ envoi_offre.date_envoi.strftime('%Hh%M') }} par {{ envoi_offre.sender_id|get_nomcomplet_by_id }}< br >
Intitulé : {{ offre.intitule }}< br >
Description : {{ offre.description }}< br >
Type de l'offre : {{ offre.type_offre }}< br >
Missions : {{ offre.missions }}< br >
Durée : {{ offre.duree }}< br >
2022-03-04 17:10:07 +01:00
2022-08-16 18:34:08 +02:00
{% if offre.correspondant_id %}
Contacté {{ correspondant.nom }} {{ correspondant.prenom }}
{% if correspondant.mail and correspondant.telephone %}
({{ correspondant.mail }} - {{ correspondant.telephone }})
2022-04-20 22:37:04 +02:00
{% else %}
2022-08-16 18:34:08 +02:00
({{ correspondant.mail }}{{ correspondant.telephone }})
2022-04-20 22:37:04 +02:00
{% endif %}
{% endif %}
2022-08-16 18:34:08 +02:00
{% if correspondant.poste %}
- poste : {{ correspondant.poste }}
2022-03-04 17:10:07 +01:00
{% endif %}
2022-08-16 18:34:08 +02:00
{% if correspondant.service %}
- service : {{ correspondant.service }}
2022-03-04 17:10:07 +01:00
{% endif %}
2022-04-20 22:37:04 +02:00
< br >
2022-03-04 17:10:07 +01:00
2022-08-16 18:34:08 +02:00
< a href = "{{ url_for('entreprises.fiche_entreprise', entreprise_id=offre.entreprise_id) }}" > lien vers l'entreprise< / a > < br >
2022-02-01 18:35:48 +01:00
2022-08-16 18:34:08 +02:00
{% for filedir, filename in files %}
< a href = "{{ url_for('entreprises.get_offre_file', entreprise_id=offre.entreprise_id, offre_id=offre.id, filedir=filedir, filename=filename) }}" > {{ filename }}< / a > < br >
2022-02-08 16:40:32 +01:00
{% endfor %}
2021-12-24 16:07:36 +01:00
< / div >
2022-02-14 19:42:17 +01:00
< div >
2022-08-16 18:34:08 +02:00
< a href = "{{ url_for('entreprises.delete_offre_recue', envoi_offre_id=envoi_offre.id) }}" style = "margin-left: 5px;" > < img title = "Supprimer" alt = "supprimer" width = "16" height = "16" border = "0" src = "/ScoDoc/static/icons/delete_small_img.png" / > < / a >
2022-02-14 19:42:17 +01:00
< / div >
2021-12-24 16:07:36 +01:00
< / div >
2022-02-08 16:40:32 +01:00
{% endfor %}
{% else %}
2021-12-24 16:07:36 +01:00
< div > Aucune offre reçue< / div >
{% endif %}
2022-01-31 18:22:54 +01:00
< / div >
2021-12-24 16:07:36 +01:00
{% endblock %}