mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
6f7aa51b2c
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17886 bcc190cf-cafb-0310-a4f2-bffc1f526a37
12 lines
177 B
Python
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
|