1
0
mirror of https://github.com/django/django.git synced 2025-01-29 11:39:24 +00:00

8 lines
134 B
Python
Raw Normal View History

from django.forms import ModelForm
from models import USPlace
class USPlaceForm(ModelForm):
class Meta:
model = USPlace