mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Fixed #11251 -- Extended Australian localflavor to ship a few model fields additionally. Thanks, Simon Meers and Julien Phalip.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16066 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
7
tests/regressiontests/localflavor/au/forms.py
Normal file
7
tests/regressiontests/localflavor/au/forms.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django.forms import ModelForm
|
||||
from models import AustralianPlace
|
||||
|
||||
class AustralianPlaceForm(ModelForm):
|
||||
""" Form for storing an Australian place. """
|
||||
class Meta:
|
||||
model = AustralianPlace
|
||||
Reference in New Issue
Block a user