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
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']
>>
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
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