{% extends "django_zooy/carbon/modal.html" %} {# Carbon Form Panel - extends Modal with form-specific structure #} {# cds-modal-body: Form is the main modal body content #} {% block cds-modal-body %}
{% csrf_token %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {# cds-form-group #} {# cds-stack: vertical spacing for form fields #} {# Django form fields - rendered by Carbon widgets #} {% for field in form.visible_fields %} {{ field }} {% endfor %}
{% endblock cds-modal-body %} {# cds-modal-footer: Submit button outside form (HTML5 form attribute) #} {% block cds-modal-footer %} {% block cds-button__cancel %}Cancel{% endblock %} {% block cds-button__submit %}{% endblock %} {% endblock cds-modal-footer %}