Skip to content
Snippets Groups Projects
Commit aaeaa40e authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Rename Forms to Application forms.

parent 56ce962d
No related branches found
No related tags found
No related merge requests found
......@@ -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.'),
......
......@@ -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',
......
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