1
0
mirror of https://github.com/django/django.git synced 2025-11-07 07:15:35 +00:00
Files
django/tests/regressiontests/localflavor/mk/forms.py
2011-10-13 21:34:56 +00:00

12 lines
180 B
Python

from __future__ import absolute_import
from django.forms import ModelForm
from .models import MKPerson
class MKPersonForm(ModelForm):
class Meta:
model = MKPerson