MultivaledIctKeyError Django
is_private = request.POST.get('is_private', False)
#Where is_private is the var you're trying to get
#and False is the default you provide, in case that
#is_private does not exist
MitchAloha