diff --git a/src/pretix/base/settings.py b/src/pretix/base/settings.py index 761d67176e..499359bd68 100644 --- a/src/pretix/base/settings.py +++ b/src/pretix/base/settings.py @@ -2756,6 +2756,11 @@ PERSON_NAME_TITLE_GROUPS = OrderedDict([ 'Dr.', 'Prof.', 'Prof. Dr.', + ))), + ('dr_prof_he', ('Dr., Prof., H.E.', ( + 'Dr.', + 'Prof.', + 'H.E.', ))) ]) diff --git a/src/pretix/control/forms/event.py b/src/pretix/control/forms/event.py index b3c3521d64..b57076fc7d 100644 --- a/src/pretix/control/forms/event.py +++ b/src/pretix/control/forms/event.py @@ -589,7 +589,7 @@ class EventSettingsForm(SettingsForm): (k, '{scheme}: {samples}'.format( scheme=v[0], samples=', '.join(v[1]) - )) + ) if v[0] != ', '.join(v[1]) else v[0]) for k, v in PERSON_NAME_TITLE_GROUPS.items() ] if not self.event.has_subevents: