mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
8c0eefd066
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16981 bcc190cf-cafb-0310-a4f2-bffc1f526a37
14 lines
336 B
Python
14 lines
336 B
Python
from django.contrib.localflavor.mx.models import (
|
|
MXStateField, MXRFCField, MXCURPField, MXZipCodeField)
|
|
from django.db import models
|
|
|
|
|
|
class MXPersonProfile(models.Model):
|
|
state = MXStateField()
|
|
rfc = MXRFCField()
|
|
curp = MXCURPField()
|
|
zip_code = MXZipCodeField()
|
|
|
|
class Meta:
|
|
app_label = 'localflavor'
|