{% extends 'booking/base.html' %} {% block content %}

Booking Settings


{% include 'booking/admin/components/show_errors.html' %} {% if request.GET.type == 'successed' %}
Settings successfully saved
{% endif %}
{% csrf_token %} {% for field in form %} {% if field.field.widget.input_type == 'checkbox' %}
{{field}}
{% else %}
{{field}}
{{field.help_text}}
{% endif %} {% endfor %}
{% endblock content %}