forked from ScoDoc/ScoDoc
28 lines
924 B
HTML
28 lines
924 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
<div class="container">
|
||
|
<h1>{{ title }}</h1>
|
||
|
{% if offres_recus %}
|
||
|
<div class="table-responsive">
|
||
|
<div>
|
||
|
{% for offre in offres_recus %}
|
||
|
<div>
|
||
|
<p>
|
||
|
Date envoi : {{ offre[0].date_envoi.strftime('%d/%m/%Y %H:%M') }}<br>
|
||
|
Intitulé : {{ offre[1].intitule }}<br>
|
||
|
Description : {{ offre[1].description }}<br>
|
||
|
Type de l'offre : {{ offre[1].type_offre }}<br>
|
||
|
Missions : {{ offre[1].missions }}<br>
|
||
|
Durée : {{ offre[1].duree }}<br>
|
||
|
</p>
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
<br>
|
||
|
{% else %}
|
||
|
<div>Aucune offre reçue</div>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
</div>
|
||
|
{% endblock %}
|