You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
946 B
32 lines
946 B
# -*- coding: utf-8 -*- |
|
""" |
|
An alphabetical list of Norwegian municipalities (fylker) fro use as `choices` |
|
in a formfield. |
|
|
|
This exists in this standalone file so that it's on ly imported into memory |
|
when explicitly needed. |
|
""" |
|
|
|
MUNICIPALITY_CHOICES = ( |
|
('akershus', u'Akershus'), |
|
('austagder', u'Aust-Agder'), |
|
('buskerud', u'Buskerud'), |
|
('finnmark', u'Finnmark'), |
|
('hedmark', u'Hedmark'), |
|
('hordaland', u'Hordaland'), |
|
('janmayen', u'Jan Mayen'), |
|
('moreogromsdal', u'Møre og Romsdal'), |
|
('nordtrondelag', u'Nord-Trøndelag'), |
|
('nordland', u'Nordland'), |
|
('oppland', u'Oppland'), |
|
('oslo', u'Oslo'), |
|
('rogaland', u'Rogaland'), |
|
('sognogfjordane', u'Sogn og Fjordane'), |
|
('svalbard', u'Svalbard'), |
|
('sortrondelag', u'Sør-Trøndelag'), |
|
('telemark', u'Telemark'), |
|
('troms', u'Troms'), |
|
('vestagder', u'Vest-Agder'), |
|
('vestfold', u'Vestfold'), |
|
('ostfold', u'Østfold') |
|
)
|
|
|