I came across a question while working with django-crispy-forms for which I\'m unable to get an answer. I have a rather complex form layout, everything works extremly nice w
Stupid me - figured it out.. The delete field is referenced as "DELETE". (note the capital letters...)
base_layout = Row(
Column(
Field('name', css_class='input-small'),
css_class='span3'
),
Column(
Field('url', css_class='input-xlarge'),
Field('DELETE', css_class='input-small'),
css_class='span4'
),
css_class='row relation-row',
)