Re: should blank POST data fallback to use model field defaults?

2016-08-12 Thread Tom Christie
For the case of fields that haven't been included in the form POST, I'd be surprised if they didn't end up with the model default. Personally I'd treat that as a regression, and revert to the older behavior. Agree that the checkbox special-casing isn't completely ideal, but I don't see any way ar

should blank POST data fallback to use model field defaults?

2016-08-12 Thread Tim Graham
A change in Django 1.10 inadvertently caused the following behavior change: class M(models.Model): f = models.CharField(max_length=255, default='default_value') class MF(forms.ModelForm): f = forms.CharField(required=False) class Meta: model = M fields = ['f'] >>

Re: CheckiO Community is looking for more ways to contribute into Open Source

2016-08-12 Thread ludovic coues
There is a section in the django documentation about contributing :) https://docs.djangoproject.com/en/dev/internals/contributing/ 2016-08-12 11:23 GMT+02:00 Alexander Lyabah : > Hi Django developers. > > My name is Alex I’m CEO and founder of CheckiO. I hope I found a right place > to post this

CheckiO Community is looking for more ways to contribute into Open Source

2016-08-12 Thread Alexander Lyabah
Hi Django developers. My name is Alex I’m CEO and founder of CheckiO. I hope I found a right place to post this kind of message. CheckiO is a game for python developers where players solving puzzles and improving their coding skills by sharing their solution and checking solutions of other use