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 5037 DB-API docs model example uses URLField for email adress popython@… Jacob "The example models in the DB API documentation include this: {{{ class Author(models.Model): name = models.CharField(maxlength=50) email = models.URLField() def __unicode__(self): return self.name }}} It should be this: {{{ class Author(models.Model): name = models.CharField(maxlength=50) email = models.EmailField() def __unicode__(self): return self.name }}}" closed Documentation dev fixed EmailField Ready for checkin 1 0 0 0 0 0