mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
0db9911316
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13505 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
452 B
Python
14 lines
452 B
Python
from django.db import models
|
|
from django.contrib.localflavor.us.models import USStateField
|
|
|
|
# When creating models you need to remember to add a app_label as
|
|
# 'localflavor', so your model can be found
|
|
|
|
class USPlace(models.Model):
|
|
state = USStateField(blank=True)
|
|
state_req = USStateField()
|
|
state_default = USStateField(default="CA", blank=True)
|
|
name = models.CharField(max_length=20)
|
|
class Meta:
|
|
app_label = 'localflavor'
|