diff --git a/portality/forms/application_forms.py b/portality/forms/application_forms.py index 7f923539a..bf2ada23d 100644 --- a/portality/forms/application_forms.py +++ b/portality/forms/application_forms.py @@ -1346,7 +1346,7 @@ class FieldDefinitions: "subfields": ["preservation_service_library", "preservation_service_url"]}, {"display": "Other", "value": "other", "subfields": ["preservation_service_other", "preservation_service_url"]}, - {"display": "The journal content isn’t archived with a long-term preservation service", + {"display": HTMLString("The journal content isn’t archived with a long-term preservation service"), "value": "none", "exclusive": True} ], "help": { @@ -1481,7 +1481,7 @@ class FieldDefinitions: {"display": "Sherpa/Romeo", "value": "Sherpa/Romeo", "subfields": ["deposit_policy_url"]}, {"display": "Other (including publisher’s own site)", "value": "other", "subfields": ["deposit_policy_other", "deposit_policy_url"]}, - {"display": "The journal has no repository policy", "value": "none", "exclusive": True} + {"display": HTMLString("The journal has no repository policy"), "value": "none", "exclusive": True} ], "help": { "long_help": ["Many authors wish to deposit a copy of their paper in an institutional or other repository " @@ -1595,7 +1595,7 @@ class FieldDefinitions: {"display": "Handles", "value": "Handles"}, {"display": "PURLs", "value": "PURL"}, {"display": "Other", "value": "other", "subfields": ["persistent_identifiers_other"]}, - {"display": "The journal does not use persistent article identifiers", "value": "none", + {"display": HTMLString("The journal does not use persistent article identifiers"), "value": "none", "exclusive": True} ], "help": { @@ -3221,7 +3221,8 @@ def __call__(self, field, **kwargs): if self.prefix_label: html.append('
  • %s %s' % (subfield.label, subfield(**kwargs))) else: - html.append('
  • %s %s' % (subfield(**kwargs), subfield.label)) + label = str(subfield.label) + html.append('
  • %s %s' % (subfield(**kwargs), label)) html.append("
  • ")