I would like to use django-taggit (click here ). The documentation ( click here) talks about using ModelForm to generate the form but I have alrea
django-taggit
ModelForm
I can't comment on the used/"green ticked" answer. But I would change the Block
for m_tag in m_tags: object.tags.add(m_tag)
to
object.tags.add(*m_tags)