I\'m trying to save a object to my database, but it\'s throwing a MultiValueDictKeyError error.
MultiValueDictKeyError
The problems lies within the form, the is_private<
is_private<
Why didn't you try to define is_private in your models as default=False?
is_private
default=False
class Foo(models.Models): is_private = models.BooleanField(default=False)