summaryrefslogtreecommitdiff
path: root/tests/regressiontests/localflavor/mx/forms.py
blob: 2669cd9ace1ef94b1729dcf46c682c9cb41323a2 (plain)
1
2
3
4
5
6
7
from django.forms import ModelForm
from models import MXPersonProfile

class MXPersonProfileForm(ModelForm):

    class Meta:
        model = MXPersonProfile