1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00
Files
django/tests/regressiontests/localflavor/hk/forms.py
2012-04-09 17:25:02 +00:00

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