1
0
mirror of https://github.com/django/django.git synced 2025-01-01 05:56:09 +00:00
django/tests/regressiontests/localflavor/au/forms.py

8 lines
207 B
Python
Raw Normal View History

from django.forms import ModelForm
from models import AustralianPlace
class AustralianPlaceForm(ModelForm):
""" Form for storing an Australian place. """
class Meta:
model = AustralianPlace