Opened 17 years ago

Closed 17 years ago

#5036 closed (duplicate)

wrong typefield for email field in models.py

Reported by: popython@… Owned by: Jacob
Component: Documentation Version: dev
Severity: Keywords: EmailField
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

class Author(models.Model):

name = models.CharField(maxlength=50)
email = models.URLField()

def unicode(self):

return self.name


it should be :

class Author(models.Model):

name = models.CharField(maxlength=50)
email = models.EmailField

def unicode(self):

return self.name

Change History (1)

comment:1 by Gary Wilson, 17 years ago

Resolution: duplicate
Status: newclosed

dup of #5037.

Note: See TracTickets for help on using tickets.
Back to Top