1
0
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:
Jannis Leidel
2011-04-22 12:01:59 +00:00
parent 157255fd98
commit 59d1f82634
8 changed files with 151 additions and 4 deletions

View 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