End of extended support for Django 1.11

2020-03-25 Thread Daniela Kim
rted-versions> page says "April 2020". May I assume that the extended support will last until the end of April, if not beyond? Thanks, Daniela -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this g

Re: ModelFormSet validation

2009-07-15 Thread danielA
, when I call the method is_valid() from formset_funcionario, the validation methods of the Form FormFuncionario will be executed. On 15 jul, 11:54, danielA wrote: > I have a Model; > > class Funcionario(models.Model): >     nome = models.CharField(max_length=200) >     email = m

ModelFormSet validation

2009-07-15 Thread danielA
I have a Model; class Funcionario(models.Model): nome = models.CharField(max_length=200) email = models.CharField(max_length=100) data_nasc = models.DateField('Data de Nascimento') salario = models.FloatField() observacao = models.CharField(max_length=500) I have a ModelForm