blob: a8a4cf0f502df864581c4de14d6c1426dea693a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'
|