1
OK – got it. In case I can save anyone else from wasting time as I did:
In the template, I was just rendering {{ form.as_p }}
It should be inside a form tag! As in:
<form>
{{ form.as_p }}
</form>
Source:stackexchange.com
1
OK – got it. In case I can save anyone else from wasting time as I did:
In the template, I was just rendering {{ form.as_p }}
It should be inside a form tag! As in:
<form>
{{ form.as_p }}
</form>