mirror of https://github.com/django/django.git
15 lines
322 B
Python
15 lines
322 B
Python
from django.forms import ModelForm
|
|
from models import Place
|
|
|
|
class PlaceForm(ModelForm):
|
|
"""docstring for PlaceForm"""
|
|
class Meta:
|
|
model = Place
|
|
from django.forms import ModelForm
|
|
from models import Place
|
|
|
|
class PlaceForm(ModelForm):
|
|
"""docstring for PlaceForm"""
|
|
class Meta:
|
|
model = Place
|