sonnetteweb/templates/homepage.html
Théophile Bastian 88e42032df Minimal first version
Currently prints "dring" to stdout, and does not ring.
2018-02-05 23:25:32 +01:00

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 %}