{% from "macros.jinja.html" import information %} {% extends "admin/master.html" %} {% block body %} {{ information(current_user, active_semester_str, role="admin") }}
{% for field in form %} {% if field.widget.input_type == "checkbox" %}
{{ field(class="form-check-input") }}
{% else %} {{ field() }} {% endif %} {% endfor %}
{{ footer|safe }} {% endblock body %}