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 memorywhen 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'))