2018-02-05 23:25:32 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
2018-04-07 13:53:55 +02:00
|
|
|
<form method="post">
|
|
|
|
<button type="submit" name="ding" value="dong">
|
|
|
|
Sonner <span>à l'Arcoloc</span>
|
|
|
|
</button>
|
|
|
|
<div class="notification">
|
2018-02-05 23:25:32 +01:00
|
|
|
{% if has_rung %}
|
2018-04-07 13:53:55 +02:00
|
|
|
<p class="hasrung">
|
|
|
|
Dring :)
|
|
|
|
</p>
|
2018-02-05 23:25:32 +01:00
|
|
|
{% endif %}
|
|
|
|
{% if too_much_dring %}
|
2018-04-07 13:53:55 +02:00
|
|
|
<p class="toomuch">
|
|
|
|
Non mais on est pas sourd·e·s, hein. Nonmaisoh.
|
|
|
|
</p>
|
2018-02-05 23:25:32 +01:00
|
|
|
{% endif %}
|
2018-04-07 13:53:55 +02:00
|
|
|
</div>
|
2018-02-05 23:25:32 +01:00
|
|
|
</form>
|
|
|
|
|
|
|
|
{% endblock content %}
|