- <!-- Bloc appel a communication -->
- {% if archives_list %}
- <table>
- <tr><td><strong>Numéro</strong></td><td><strong>Date</strong></td><td><strong>Titre</strong></td><td><strong>Télécharger</strong></td></tr>
- {% for item in archives_list %}
- <tr><td><a href="{{item.get_absolute_url}}">{{item.numero}}</a></td><td>{{item.date_pub|date:"d F Y"}}</td><td>{{item.titre}}</td><td style="text-align: center"><a href="{{ MEDIA_URL }}{{ item.fichier }}" style="text-decoration: none"><li class="icon-file-alt icon-2x" style="margin-right: 10px;"></li></a></tr>
- {% endfor %}
- </table>
- {% else%}
- <p>Aucune archives</p>
- {% endif %}
+<!-- Bloc appel a communication -->
+{% if archives_list %}
+ <p>Pour les archives antérieures à l'année 2015, merci de consulter cette adresse : <a href="https://listes.auf.org/pipermail/liste-framonde/">https://listes.auf.org/pipermail/liste-framonde/</a></p>
+ <table>
+ <tr><td><strong>Titre</strong></td><td><strong>Télécharger</strong></td></tr>
+ {% for item in archives_list %}
+ <tr><td>{{item.titre}}</td><td style="text-align: center"><a href="{{ MEDIA_URL }}{{ item.fichier }}" style="text-decoration: none"><li class="icon-file-alt icon-2x" style="margin-right: 10px;"></li></a></tr>
+ {% endfor %}
+ </table>
+{% else%}
+<p>Aucune archives</p>
+{% endif %}