{% extends "base.html" %} {% load i18n bootstrap4 %} {% block content %}
{% for error in form.non_field_errors %} {% endfor %} {% csrf_token %}
{% bootstrap_field form.title %}
{% bootstrap_field form.first_name %}
{% bootstrap_field form.last_name %}
{% bootstrap_field form.gender %} {% bootstrap_field form.birthday %} {% bootstrap_field form.email %}
{% bootstrap_field form.phone_number %}
{% bootstrap_field form.phone_number_alternative %}
{% bootstrap_field form.street %}
{% bootstrap_field form.house_number %}
{% bootstrap_field form.zip_code %}
{% bootstrap_field form.city %}
{% bootstrap_field form.country %}
{% bootstrap_field form.additional_information %} {% bootstrap_field form.preferred_contact_method %} {% for weekday, hours in availabilities.items %} {% endfor %}
{% trans "Monday" %} {% trans "Tuesday" %} {% trans "Wednesday" %} {% trans "Thursday" %} {% trans "Friday" %}
{% trans "Back" %}
{% endblock %}