{% extends "base_view.html" %} {% load widget_tweaks %} {% block title %} meliza-lab : mark order as placed {% endblock %} {% block content %}

Mark order as placed

{% csrf_token %}

Click the Confirm button to mark the in-progress order {{order.name}} as placed. You can update account and user information using the fields below.

{% for field in form %}
{% if field.field.widget.input_type == 'checkbox' %} {# Handle multiple checkboxes #} {% if field.field.choices %}
{% for choice in field %}
{% endfor %}
{% else %} {# Single checkbox #}
{% render_field field %}
{% endif %} {% else %} {# Regular form control #} {% render_field field class+="form-control" %} {% endif %} {% if field.help_text %}

{{ field.help_text }}

{% endif %} {% if field.errors %} {{ field.errors }} {% endif %}
{% endfor %}
{% endblock %}