[Fixed]-Using @processor_for with a Form in Mezzanine

1👍

You can use the template tag fields_for:

{% load mezzanine_tags %}

{% errors_for some_form_object %}
<form method="POST">
    {% fields_for some_form_object %}
    <input type="submit">
</form>

Leave a comment