{% extends "base.html" %} {% import "_form.html" as wtf %} {% block app_content %} {% if not request.args.get("force") and not doas %}
{{ _("Compte") }}
{{ _("Chambre") }}
{{ _("Appareil") }}
{{ _("Internet") }}
{% endif %}

{{ title }}

{% if doas %}
{% include "doas.html" %}
{% endif %}

{{ _("Merci de renseigner ta chambre actuelle, ainsi que le début de la " "location (approximativent).") }}

{{ _("La date de fin n'est pas obligatoire.") }}

{{ form.hidden_tag() }}
{{ wtf.form_field(form.room) }}
{{ wtf.form_field(form.start) }}
{{ wtf.form_field(form.end) }}
{{ wtf.form_field(form.submit) }}
{% if already_rented %} {% endif %} {% endblock %}