| 1 | {% extends "base.html" %} |
| 2 | {% load i18n cms_tags%} |
| 3 | {% block Contenu %} |
| 4 | |
| 5 | <p>{# show_placeholder "Texter" "accueil"#}</p> |
| 6 | |
| 7 | <!-- Bloc appel a communication --> |
| 8 | <div class="titre_bloc"><p>Derniers appels à communications</p></div> |
| 9 | <div class="bloc"> |
| 10 | {% if comm_list %} |
| 11 | {% for item in comm_list %} |
| 12 | <h4><a href="{{item.get_absolute_url}}">{{item.titre}}</a></h4> |
| 13 | <p>{{item.lieu}} {{item.date_event}}</p> |
| 14 | <p><span>Date Limite:</span> {{item.date_limite|date:"d F Y"}}</p> |
| 15 | <hr /> |
| 16 | {% endfor %} |
| 17 | <p class="center"><a href="/appels-communications/"><button class="blue">> Tous les appels à communication </button></a></p> |
| 18 | {% else%} |
| 19 | <p>Aucun appel à communication pour le moment</p> |
| 20 | {% endif %} |
| 21 | </div> |
| 22 | |
| 23 | <!-- Bloc appel a contribution --> |
| 24 | <div class="titre_bloc"><p>Derniers appels à contributions</p></div> |
| 25 | <div class="bloc"> |
| 26 | {% if contri_list %} |
| 27 | {% for item in contri_list %} |
| 28 | <h4><a href="{{item.get_absolute_url}}">{{item.titre}}</a></h4> |
| 29 | <p>{{item.lieu}} {{item.date_event}}</p> |
| 30 | <p><span>Date Limite:</span> {{item.date_limite|date:"d F Y"}}</p> |
| 31 | <hr /> |
| 32 | {% endfor %} |
| 33 | <p class="center"><a href="/appels-contributions/"><button class="blue">> Tous les appels à contributions </button></a></p> |
| 34 | {% else%} |
| 35 | <p>Aucun appel à contribution pour le moment</p> |
| 36 | {% endif %} |
| 37 | </div> |
| 38 | |
| 39 | <!-- Bloc appel offres --> |
| 40 | <div class="titre_bloc"><p>Derniers appels d'offres</p></div> |
| 41 | <div class="bloc"> |
| 42 | {% if offre_list %} |
| 43 | {% for item in offre_list %} |
| 44 | <h4><a href="{{item.get_absolute_url}}">{{item.titre}}</a></h4> |
| 45 | <p>{{item.lieu}} {{item.date_event}}</p> |
| 46 | <p><span>Date Limite:</span> {{item.date_limite|date:"d F Y"}}</p> |
| 47 | <hr /> |
| 48 | {% endfor %} |
| 49 | <p class="center"><a href="/appels-offres/"><button class="blue">> Tous les appels d'offres </button></a></p> |
| 50 | {% else%} |
| 51 | <p>Aucun appel d'offre pour le moment</p> |
| 52 | {% endif %} |
| 53 | </div> |
| 54 | |
| 55 | {% endblock %} |