diff --git a/hypha/apply/funds/models/applications.py b/hypha/apply/funds/models/applications.py index b1a96a4026fa0e4dbb69cafa498f4c1041952702..c6abd81057521dc16e34bc3909c80e9d64d1cee9 100644 --- a/hypha/apply/funds/models/applications.py +++ b/hypha/apply/funds/models/applications.py @@ -188,7 +188,11 @@ class RoundBase(WorkflowStreamForm, SubmittableStreamForm): # type: ignore FieldPanel('reviewers', widget=forms.SelectMultiple(attrs={'size': '16'})), ReadOnlyPanel('get_workflow_name_display', heading=_('Workflow'), help_text=_('Copied from the fund.')), # Forms comes from parental key in models/forms.py - ReadOnlyInlinePanel('forms', help_text=_('Copied from the fund.')), + ReadOnlyInlinePanel( + 'forms', + help_text=_('Copied from the fund.'), + heading=_('Application forms') + ), ReadOnlyInlinePanel( 'review_forms', help_text=_('Copied from the fund.'), diff --git a/hypha/apply/funds/models/utils.py b/hypha/apply/funds/models/utils.py index e01b098b9282bdff0440491157c336aca973e7e1..2023af9488fccb2ba17105645dcbe91fc392f9aa 100644 --- a/hypha/apply/funds/models/utils.py +++ b/hypha/apply/funds/models/utils.py @@ -116,7 +116,7 @@ class WorkflowStreamForm(WorkflowHelpers, AbstractStreamForm): # type: ignore content_panels = AbstractStreamForm.content_panels + [ FieldPanel('workflow_name'), - InlinePanel('forms', label=_('Forms')), + InlinePanel('forms', label=_('Application forms')), InlinePanel('review_forms', label=_('Internal Review Forms')), InlinePanel( 'external_review_forms',