[Answered ]-My form is not saving for some reason… did I made a mistake on my HTML?

1👍

The problem lies with my <option value="{{ something }}". What value needs is {{ something }}‘s id and not the name itself.

The code should be:

<option value="{{ author.id }}">{{author.first_name }} {{ author.last_name }}</option>

Leave a comment