{% extends 'booking/user/base.html' %} {% load static %} {% block extra_css %} {% endblock extra_css %} {% block side_text %}

{{title}}

{{description}}

{% endblock side_text %} {% block steps %} {% include 'booking/admin/components/show_errors.html' %}

{{wizard.steps.current}}

Please fill in the booking {{wizard.steps.current}}:


{{ wizard.management_form }}
{% for field in wizard.form %}
{{ field }}
{% if wizard.steps.current == "Time" %}
{% for item in get_available_time %}

{{item.time}}

{% endfor %}
{% endif %} {% endfor %}
{% endblock steps %} {% block extra_script %} {% endblock extra_script %}