mirror of
https://github.com/Hopiu/django.git
synced 2026-05-13 18:13:09 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13505 bcc190cf-cafb-0310-a4f2-bffc1f526a37
7 lines
167 B
Python
7 lines
167 B
Python
from django.forms import ModelForm
|
|
from models import USPlace
|
|
|
|
class USPlaceForm(ModelForm):
|
|
"""docstring for PlaceForm"""
|
|
class Meta:
|
|
model = USPlace
|