[Fixed]-Django-autocomplete-light: Forward works fine in admin but returns None when used in template

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>
👤fekioh

Leave a comment