From 35185b36cbbf55b25e078f8b21f2e77afebb062b Mon Sep 17 00:00:00 2001 From: Arky Date: Sat, 2 Oct 2021 23:47:55 +0700 Subject: [PATCH] Reorder options The Address is the most common option, moving it to the top. --- src/popolo/contenttypes/content/contact_detail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popolo/contenttypes/content/contact_detail.py b/src/popolo/contenttypes/content/contact_detail.py index 486fb2a..fb61cd3 100644 --- a/src/popolo/contenttypes/content/contact_detail.py +++ b/src/popolo/contenttypes/content/contact_detail.py @@ -17,12 +17,12 @@ contact_types = SimpleVocabulary( [ + SimpleTerm(value=u'address', title=_(u'A postal address')), SimpleTerm(value=u'cell', title=_(u'Mobile Phone Number')), SimpleTerm(value=u'voice', title=_(u'Voice Phone Number')), SimpleTerm(value=u'text', title=_(u'A Phone number for text messages')), SimpleTerm(value=u'email', title=_(u'An email address')), - SimpleTerm(value=u'address', title=_(u'A postal address')), SimpleTerm(value=u'url', title=_(u'A URL to a contact form')), SimpleTerm(value=u'twitter', title=_(u'Twitter Handle')), ],