mirror of https://github.com/django/django.git
8 lines
137 B
Python
8 lines
137 B
Python
|
from django.forms import ModelForm
|
||
|
from models import MKPerson
|
||
|
|
||
|
class MKPersonForm(ModelForm):
|
||
|
|
||
|
class Meta:
|
||
|
model = MKPerson
|