app/django/contrib/localflavor/no/no_municipalities.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sun, 16 Nov 2008 22:11:16 +0000 (2008-11-16)
changeset 491 e13da520d063
parent 54 03e267d67478
permissions -rw-r--r--
Improved public page link text Instead of putting the name of the entity in the link text to the public page, a way better solution is to put static text there.
# -*- 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')
)