File size: 554 Bytes
f631d90
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}
{% block title %}Accueil - Forum Anonyme{% endblock %}
{% block content %}
<h2>Fils de discussion</h2>
{% if threads %}
    <ul class="thread-list">
        {% for thread in threads %}
            <li>
                <a href="{{ url_for('thread', thread_id=thread.id) }}">{{ thread.title }}</a>
                <small>Créé le {{ thread.timestamp.strftime('%d/%m/%Y %H:%M:%S') }}</small>
            </li>
        {% endfor %}
    </ul>
{% else %}
    <p>Aucun fil de discussion pour le moment.</p>
{% endif %}
{% endblock %}