Skip to content
Snippets Groups Projects
Verified Commit 54c77243 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Align addressing format values with what Person model expects

parent f903d6b9
No related branches found
No related tags found
No related merge requests found
Pipeline #1939 failed
......@@ -120,14 +120,12 @@ class ImprintURL(StringPreference):
class AdressingNameFormat(ChoicePreference):
section = notification
name = "addressing_name_format"
default = "german"
default = "first_last"
required = False
verbose_name = _("Name format for addressing")
choices = (
(None, "-----"),
("german", "John Doe"),
("english", "Doe, John"),
("dutch", "Doe John"),
("first_last", "John Doe"),
("last_fist", "Doe, John"),
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment