/django/contrib/localflavor/be/be_regions.py
Python | 8 lines | 6 code | 1 blank | 1 comment | 0 complexity | da4638117c7c0609c1729070cc9cc1ff MD5 | raw file
Possible License(s): BSD-3-Clause
1from django.utils.translation import ugettext_lazy as _ 2 3# ISO codes 4REGION_CHOICES = ( 5 ('BRU', _('Brussels Capital Region')), 6 ('VLG', _('Flemish Region')), 7 ('WAL', _('Wallonia')) 8)