mirror of
https://github.com/Hopiu/django.git
synced 2026-05-28 08:28:25 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
11 lines
177 B
Python
11 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
|