mirror of https://github.com/django/django.git
Fixed #1189 -- Fixed typo in docs/forms.txt 'Place' model example. Thanks, Brian Ray
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1865 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
0b6b89f222
commit
bfd5ce8c41
|
@ -26,11 +26,11 @@ this document, we'll be working with the following model, a "place" object::
|
||||||
)
|
)
|
||||||
|
|
||||||
class Place(meta.Model):
|
class Place(meta.Model):
|
||||||
name = meta.CharField(maxlength=100),
|
name = meta.CharField(maxlength=100)
|
||||||
address = meta.CharField(maxlength=100, blank=True),
|
address = meta.CharField(maxlength=100, blank=True)
|
||||||
city = meta.CharField(maxlength=50, blank=True),
|
city = meta.CharField(maxlength=50, blank=True)
|
||||||
state = meta.USStateField(),
|
state = meta.USStateField()
|
||||||
zip_code = meta.CharField(maxlength=5, blank=True),
|
zip_code = meta.CharField(maxlength=5, blank=True)
|
||||||
place_type = meta.IntegerField(choices=PLACE_TYPES)
|
place_type = meta.IntegerField(choices=PLACE_TYPES)
|
||||||
class META:
|
class META:
|
||||||
admin = meta.Admin()
|
admin = meta.Admin()
|
||||||
|
|
Loading…
Reference in New Issue