/django/contrib/localflavor/cl/cl_regions.py
Python | 25 lines | 18 code | 0 blank | 7 comment | 0 complexity | ecf9eab826e3031498e3f577bd031586 MD5 | raw file
Possible License(s): BSD-3-Clause
- # -*- coding: utf-8 -*-
- """
- A list of Chilean regions as `choices` in a formfield.
- This exists in this standalone file so that it's only imported into memory
- when explicitly needed.
- """
- REGION_CHOICES = (
- ('RM', u'Regiуn Metropolitana de Santiago'),
- ('I', u'Regiуn de Tarapacб'),
- ('II', u'Regiуn de Antofagasta'),
- ('III', u'Regiуn de Atacama'),
- ('IV', u'Regiуn de Coquimbo'),
- ('V', u'Regiуn de Valparaнso'),
- ('VI', u'Regiуn del Libertador Bernardo O\'Higgins'),
- ('VII', u'Regiуn del Maule'),
- ('VIII',u'Regiуn del Bнo Bнo'),
- ('IX', u'Regiуn de la Araucanнa'),
- ('X', u'Regiуn de los Lagos'),
- ('XI', u'Regiуn de Aysйn del General Carlos Ibбсez del Campo'),
- ('XII', u'Regiуn de Magallanes y la Antбrtica Chilena'),
- ('XIV', u'Regiуn de Los Rнos'),
- ('XV', u'Regiуn de Arica-Parinacota'),
- )