forked from DGNum/gestioCOF
14 lines
292 B
HTML
14 lines
292 B
HTML
|
{% extends "base_title.html" %}
|
||
|
|
||
|
{% block realcontent %}
|
||
|
<h2>Tirage au sort du BdA</h2>
|
||
|
<form action="" method="post" id="tokenform">
|
||
|
{% csrf_token %}
|
||
|
<strong>La graine :</strong>
|
||
|
<div>
|
||
|
{{ form.token }}
|
||
|
</div>
|
||
|
<input type="submit" value="Go" />
|
||
|
</form>
|
||
|
{% endblock %}
|