django1/tests/regressiontests/localflavor/hk/forms.py

12 lines
177 B
Python

from __future__ import absolute_import
from django.forms import ModelForm
from .models import HKPlace
class HKPlaceForm(ModelForm):
class Meta:
model = HKPlace