﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
10373	Django Admin: Adding new tuples: Does not allow if fields are null.	koranthala	nobody	"Hi,
    I reproduced this in Django 1.1, but I had seen this in earlier versions too.[[BR]]
    Using the Django Admin page, I am trying to add new tuples to the system.[[BR]]

    In one of my Models, I have a field with null=True. But, when I try to add that tuple with that field as null, it does not allow it to be added.
    [[BR]]Rather it gives an error '* This field is required'.

    I have attached an image and the Model alongwith.
The model:[[BR]]
{{{
class User(models.Model):
    id = models.IntegerField(primary_key=True)
    name = models.CharField(max_length=256)
    library = models.ForeignKey(Template, null=True)
}}}


"		closed	contrib.admin			invalid			Unreviewed	0	0	0	0	0	0
