djangoのmodelでchoicesを持つフィールドはget_FOO_displayでhuman readableな値を返してくれます。 Model instance reference | Django documentation | Django こんな感じで使えます。 from django.db import models from django_localflavor_jp.jp_prefectures import JP_PREFECTURES class Address(models.Model): name = models.CharField(max_length=100) prefecture = models.CharField(max_length=100, choices=JP_PREFECTURES) address = models.CharField(m