﻿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
12223	Model field documentation needs clarification about validation	JohnDoe	nobody	"The modelfield EmailField does not actually validate the email, as stated in the documentation (see. [http://docs.djangoproject.com/en/dev/ref/models/fields/#emailfield]).

=== My test ===

{{{
class TestModel(models.Model):
    email = models.EmailField()
}}}


{{{
>>> t = TestModel(email='asd,,,')
>>> t.save()
}}}

No error is raised, even though that is not a valid email.
"		closed	Database layer (models, ORM)	1.1		invalid	validation		Unreviewed	0	0	0	0	0	0
