25 lines
423 B
HTML
25 lines
423 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<h1>Sonnette de l'Arcoloc</h1>
|
||
|
|
||
|
{% if has_rung %}
|
||
|
<div id="hasrung">
|
||
|
<p>Dring :)</p>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
{% if too_much_dring %}
|
||
|
<div id="toomuch">
|
||
|
<p>Non mais on est pas sourd·e·s, hein. Nonmaisoh.</p>
|
||
|
</div>
|
||
|
{% endif %}
|
||
|
|
||
|
<form method="post">
|
||
|
<input type="hidden" name='ding' value='dong' />
|
||
|
<input type="submit" value="Dring !" />
|
||
|
</form>
|
||
|
|
||
|
{% endblock content %}
|