mirror of
https://github.com/django/django.git
synced 2024-12-26 11:06:07 +00:00
59d1f82634
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
15 lines
525 B
Python
15 lines
525 B
Python
from django.db import models
|
|
from django.contrib.localflavor.au.models import AUStateField, AUPostCodeField
|
|
|
|
class AustralianPlace(models.Model):
|
|
state = AUStateField(blank=True)
|
|
state_required = AUStateField()
|
|
state_default = AUStateField(default="NSW", blank=True)
|
|
postcode = AUPostCodeField(blank=True)
|
|
postcode_required = AUPostCodeField()
|
|
postcode_default = AUPostCodeField(default="2500", blank=True)
|
|
name = models.CharField(max_length=20)
|
|
|
|
class Meta:
|
|
app_label = 'localflavor'
|