Commit | Line | Data |
---|---|---|
01b54c21 MN |
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 | <p>{{item.lieu}}, le {{item.date_event|date:"d F Y"}}</p> | |
15 | <p><span>Date Limite:</span> {{item.date_limite|date:"d F Y"}}</p> | |
16 | <hr /> | |
17 | {% endfor %} | |
18 | <p class="center">{% paginate %}</p> | |
19 | {% else%} | |
20 | <p>Aucun appel à contribution pour le moment</p> | |
21 | {% endif %} | |
22 | </div> | |
23 | ||
24 | {% endblock %} |