mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #13495 -- Refactored the localflavor test directory to provide the placeholder structure for other flavors. Thanks to chronos for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13505 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
13
tests/regressiontests/localflavor/us/models.py
Normal file
13
tests/regressiontests/localflavor/us/models.py
Normal file
@@ -0,0 +1,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'
|
||||
Reference in New Issue
Block a user