Country-specific Django helpers for Mexico.
- forms.MXZipCodeField: A form field that accepts a Mexican Zip Code. More info about this: List of postal codes in Mexico (zipcodes)
- forms.MXRFCField: A form field that validates a Mexican Registro Federal de Contribuyentes for either Persona física or Persona moral. This field accepts RFC strings whether or not it contains a homoclave. More info about this: Registro Federal de Contribuyentes (rfc)
- forms.MXCURPField: A field that validates a Mexican Clave Única de Registro de Población. More info about this: Clave Unica de Registro de Poblacion (curp)
- forms.MXStateSelect: A
Select
widget that uses a list of Mexican states as its choices. - models.MXStateField: A model field that stores the three-letter Mexican state abbreviation in the database.
- models.MXZipCodeField: A model field that forms represent as a
forms.MXZipCodeField
field and stores the five-digit Mexican zip code. - models.MXRFCField: A model field that forms represent as a
forms.MXRFCField
field and stores the value of a valid Mexican RFC. - models.MXCURPField: A model field that forms represent as a
forms.MXCURPField
field and stores the value of a valid Mexican CURP.
Additionally, a choice tuple is provided in django_localflavor_mx.mx_states
,
allowing customized model and form fields, and form presentations, for subsets of
Mexican states abbreviations:
- mx_states.STATE_CHOICES: A tuple of choices of the states abbreviations for all 31 Mexican states, plus the Distrito Federal.
See the source code for full details.
Django's "localflavor" packages offer additional functionality for particular countries or cultures.
For example, these might include form fields for your country's postal codes, phone number formats or government ID numbers.
This code used to live in Django proper -- in django.contrib.localflavor -- but was separated into standalone packages in Django 1.5 to keep the framework's core clean.
For a full list of available localflavors, see https://github.com/django/