forked from ScoDoc/ScoDoc
22 lines
590 B
Plaintext
22 lines
590 B
Plaintext
|
{% extends "sco_page.j2" %}
|
||
|
{% import 'wtf.j2' as wtf %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
{% for err_msg in form.error_messages %}
|
||
|
<div class="wtf-error-messages">
|
||
|
{{ err_msg }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
<h2>La date courante n'est pas dans le semestre ({{deb}} -> {{fin}})</h2>
|
||
|
<h2>Choissez une autre date</h2>
|
||
|
|
||
|
<form action="" method="post">
|
||
|
{{ form.hidden_tag() }}
|
||
|
{{ form.date.label }} : {{ form.date }}
|
||
|
<div class="submit">
|
||
|
{{ form.submit }} {{ form.cancel }}
|
||
|
</div>
|
||
|
</form>
|
||
|
|
||
|
{% endblock app_content %}
|