diff --git a/breccia_mapper/settings.py b/breccia_mapper/settings.py index 2c74594..5cfa1ad 100644 --- a/breccia_mapper/settings.py +++ b/breccia_mapper/settings.py @@ -357,6 +357,9 @@ CONSTANCE_CONFIG = { 'ORGANISATION_LIST_HELP': ( '', 'Help text to display at the top of the organisaton list.'), + 'RELATIONSHIP_FORM_HELP': ( + '', + 'Help text to display at the top of relationship forms.'), } # yapf: disable CONSTANCE_CONFIG_FIELDSETS = { @@ -364,9 +367,15 @@ CONSTANCE_CONFIG_FIELDSETS = { 'NOTICE_TEXT', 'NOTICE_CLASS', ), - 'Data Collection': ('CONSENT_TEXT', ), - 'Help Text': ('PERSON_LIST_HELP', 'ORGANISATION_LIST_HELP'), -} + 'Data Collection': ( + 'CONSENT_TEXT', + ), + 'Help Text': ( + 'PERSON_LIST_HELP', + 'ORGANISATION_LIST_HELP', + 'RELATIONSHIP_FORM_HELP', + ), +} # yapf: disable CONSTANCE_BACKEND = 'constance.backends.database.DatabaseBackend' diff --git a/people/templates/people/relationship/create.html b/people/templates/people/relationship/create.html index 6f7d8e5..e9d1749 100644 --- a/people/templates/people/relationship/create.html +++ b/people/templates/people/relationship/create.html @@ -15,6 +15,14 @@