9 lines
194 B
Python
9 lines
194 B
Python
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
# ISO codes
|
||
|
REGION_CHOICES = (
|
||
|
('BRU', _('Brussels Capital Region')),
|
||
|
('VLG', _('Flemish Region')),
|
||
|
('WAL', _('Wallonia'))
|
||
|
)
|