| 1 | {% extends "base.html" %} |
| 2 | {% load i18n pagination_tags cms_tags%} |
| 3 | {% block Contenu %} |
| 4 | |
| 5 | <h6>{{item.titre}}</h6> |
| 6 | <p>{% show_placeholder "Texter" "Contribution"%}</p> |
| 7 | |
| 8 | <!-- Bloc appel a communication --> |
| 9 | <div class="titre_bloc"><p>Derniers appels à contributions</p></div> |
| 10 | <div class="bloc"> |
| 11 | {% if contri_list %} |
| 12 | {% for item in contri_list %} |
| 13 | <h4><a href="{{item.get_absolute_url}}">{{item.titre}}</a></h4> |
| 14 | {% if item.sous_titre %}<p>{{item.sous_titre}}</p>{% endif %} |
| 15 | <p>{{item.lieu}} {{item.date_event }}</p> |
| 16 | <p><h4><i><span>Date Limite:</span> {{item.date_limite|date:"d F Y"}}</i></h4></p> |
| 17 | <hr /> |
| 18 | {% endfor %} |
| 19 | <p class="center">{% paginate %}</p> |
| 20 | {% else%} |
| 21 | <p>Aucun appel à contribution pour le moment</p> |
| 22 | {% endif %} |
| 23 | </div> |
| 24 | |
| 25 | {% endblock %} |