django/tests/regressiontests/localflavor/forms.py

8 lines
161 B
Python
Raw Normal View History

from django.forms import ModelForm
from models import Place
class PlaceForm(ModelForm):
"""docstring for PlaceForm"""
class Meta:
model = Place