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>
Source:stackexchange.com