22 lines
530 B
HTML
22 lines
530 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<h2>Toi aussi, joue au rézoman !</h2>
|
|
<p>
|
|
La rezo-roulette metzquetaire vous offre un répit temporaire. Profite bien {{ user['firstname']+' '+user['name'] }} ;-)
|
|
</p>
|
|
<h2>Historique personnel</h2>
|
|
|
|
{% if bans_hist != [] %}
|
|
<ul id="history">
|
|
{% for entry in bans_hist %}
|
|
<li class="{{ entry[0] }}" class="events">
|
|
<span class="normal"> {{ entry[1] }}</span>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% else %}
|
|
<p>
|
|
Rien pour l'instant
|
|
</p>
|
|
{% endif %}
|
|
{% endblock %}
|