You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
469 B
17 lines
469 B
{% extends 'default_template.html' %} |
|
{% block 'contenu' %} |
|
<div class="p-2"> |
|
{{zone.description |safe}} |
|
</div> |
|
{% if zone.description %} |
|
<div class="p-2">Une fois trouvé, saisissez votre code ci-dessous :</div> |
|
<form action="{% url 'app:displayZone' zone.code %}" method="POST">{% csrf_token %} |
|
<div class="d-flex flex-row justify-content-center"> |
|
{{ form.as_div }} |
|
<div class="pl-2"> |
|
<input type="submit" value="OK"> |
|
</div> |
|
</div> |
|
</form> |
|
{% endif %} |
|
{% endblock %}
|
|
|