I would like to use django-taggit
(click here ). The documentation ( click here) talks about using ModelForm
to generate the form but I have already my form that I would like to use.
Let's say if I have something like this:
forms.py
class MyForm(forms.Form):
......
tags = forms.CharField(max_length=200, widget=forms.Textarea)
how do I save the the tags coming from the tags
field? What goes in my views.py
? A real example would be truly appreciated.