forked from ScoDoc/ScoDoc
28 lines
740 B
Plaintext
28 lines
740 B
Plaintext
|
{% extends "base.j2" %}
|
||
|
{% import 'bootstrap/wtf.html' as wtf %}
|
||
|
|
||
|
{% block app_content %}
|
||
|
<h1>Configuration du Module d'assiduité</h1>
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-md-8">
|
||
|
|
||
|
<form class="form form-horizontal" method="post" enctype="multipart/form-data" role="form">
|
||
|
{{ form.hidden_tag() }}
|
||
|
{{ wtf.form_errors(form, hiddens="only") }}
|
||
|
|
||
|
{{ wtf.form_field(form.morning_time) }}
|
||
|
{{ wtf.form_field(form.lunch_time) }}
|
||
|
{{ wtf.form_field(form.afternoon_time) }}
|
||
|
<div class="form-group">
|
||
|
{{ wtf.form_field(form.submit) }}
|
||
|
{{ wtf.form_field(form.cancel) }}
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
{% endblock %}
|