Forum / templates /index.html
Docfile's picture
Upload 6 files
f631d90 verified
raw
history blame
554 Bytes
{% 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 %}