Re: Django not enforcing blank=False on a model

2013-07-30 Thread Francis Devereux
On 30 Jul 2013, at 06:14, Jani Tiainen wrote: > Also, you should note that .save() doesn't imply running validation > If you want models to be automatically validated on .save() then you can use

Re: Django not enforcing blank=False on a model

2013-07-29 Thread Jani Tiainen
On Mon, 29 Jul 2013 18:14:50 -0700 (PDT) Knight Samar wrote: > Hi, > > I have a model > > > from django.db import models > > > > class Organization(models.Model): > > name = models.CharField(max_length=100, > > blank = False, #mandatory >

Django not enforcing blank=False on a model

2013-07-29 Thread Knight Samar
Hi, I have a model > from django.db import models > > class Organization(models.Model): > name = models.CharField(max_length=100, > blank = False, #mandatory > help_text = "Name of your Organization", >