[Answered ]-Django formwizard breaks after adding css style django-material

2👍

changing the form template to below fixes the issue:

<form  action="" method="post">
{% csrf_token %}
{{ wizard.management_form }}
{% if wizard.form.forms %}
    {{ wizard.form.management_form }}
        {% for form in wizard.form.forms %}
            {% form %}{% endform %}
        {% endfor %}
{% else %}
    {% form form=wizard.form %}{% endform %}
{% endif %}
<input
👤arm1

Leave a comment