Binding model data to a formset without POST

2015-01-20 Thread Rob Groves
Hi All, I am new to Django and am enjoying it very much. Excellent documentation, tutorials, and general environment to work in. Good job Django developers! I have a question on binding data to a ModelFormset. I have looked extensively and not seen this particular issue covered before. I hav

Re: Binding model data to a formset without POST

2015-01-23 Thread Rob Groves
#x27;re just doing basic fields, that should work. If you're doing > anything more complicated, it might make sense to run the validation more > by hand. If you could call field.clean() on the less raw data you could > skip widgets and prefixes all together. > > Collin >

Re: Django error report not being sent through email

2015-09-20 Thread Rob Groves
I'm not sure if it is a typo... but your have: * EMAIL_HOST = 'stmp.comp.nus.edu.sg '*Should that be: * EMAIL_HOST = 'smtp.comp.nus.edu.sg '* On Saturday, September 19, 2015 at 7:49:56 AM UTC-4, Xin Ji wrote: > > I'm using apache + djan

Re: Does anyone use Django on bluehost? "Cant find fcgi module" error on line 9 .

2016-04-09 Thread Rob Groves
I am using Django on bluehost. I suspect that the issue you are seeing is that Django1.9 has stopped supporting fcgi. I found that out when I tried to upgrade from 1.8 a while back. I think you can probably copy over the fcgi module from the Django 1.8 release, but I haven't tried that. I ju