forked from ScoDoc/ScoDoc
58 lines
2.3 KiB
Django/Jinja
58 lines
2.3 KiB
Django/Jinja
{# -*- mode: jinja-html -*- #}
|
|
{% extends 'base.j2' %}
|
|
|
|
{% block app_content %}
|
|
{% include 'entreprises/nav.j2' %}
|
|
|
|
<div class="container">
|
|
<h1>Offres reçues</h1>
|
|
{% if offres_recues %}
|
|
{% for envoi_offre, offre, files, correspondant in offres_recues %}
|
|
<div class="offre offre-recue">
|
|
<div style="word-break:break-all; text-align: justify;">
|
|
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>
|
|
|
|
{% if offre.correspondant_id %}
|
|
Contacté {{ correspondant.nom }} {{ correspondant.prenom }}
|
|
{% if correspondant.mail and correspondant.telephone %}
|
|
({{ correspondant.mail }} - {{ correspondant.telephone }})
|
|
{% else %}
|
|
({{ correspondant.mail }}{{ correspondant.telephone }})
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if correspondant.poste %}
|
|
- poste : {{ correspondant.poste }}
|
|
{% endif %}
|
|
{% if correspondant.service %}
|
|
- service : {{ correspondant.service }}
|
|
{% endif %}
|
|
<br>
|
|
|
|
<a href="{{ url_for('entreprises.fiche_entreprise', entreprise_id=offre.entreprise_id) }}">lien vers
|
|
l'entreprise</a><br>
|
|
|
|
{% 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>
|
|
{% endfor %}
|
|
</div>
|
|
<div>
|
|
<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>
|
|
</div>
|
|
</div>
|
|
{% endfor %}
|
|
{% else %}
|
|
<div>Aucune offre reçue</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %} |