Model formset not saving

2018-07-16 Thread cbparker
I'm using Django 2.0.3 on Ubuntu 16.04. Any idea what would cause a model formset to return None when calling save()? Here is the relevant code: RepairFormSet = modelformset_factory(Repair, form=RepairForm, exclude=[]) form = RepairFormSet(request.POST) if form.is_valid(): form.save() retur

Re: Model formset not saving

2018-07-17 Thread cbparker
Is there a paid support option to get help? I've been trying to ask for help on IRC for a while but all I've gotten is insults. On Monday, July 16, 2018 at 6:06:00 PM UTC-4, cbpa...@gmail.com wrote: > > I'm using Django 2.0.3 on Ubuntu 16.04. Any idea what would cause a model > formset to return

Re: Model formset not saving

2018-07-17 Thread cbparker
Yes, it is still returning None. On Wednesday, July 18, 2018 at 12:40:06 AM UTC-4, Glen D souza wrote: > > have you tried > > form.save(commit = True) ? > > > > On 18 July 2018 at 01:27, > wrote: > >> Is there a paid support option to get help? I've been trying to ask for >> help on IRC for a wh

Re: Model formset not saving

2018-07-18 Thread cbparker
On Wednesday, July 18, 2018 at 5:16:11 AM UTC-4, Michal Petrucha wrote: > > On Tue, Jul 17, 2018 at 12:57:21PM -0700, cbpa...@gmail.com > wrote: > > Is there a paid support option to get help? I've been trying to ask for > > help on IRC for a while but all I've gotten is insults. > > Reading t