From 5fff73d10e094e9715f86732f11a249790974e9e Mon Sep 17 00:00:00 2001 From: Fredrik Jonsson <frjo@xdeb.org> Date: Mon, 4 Nov 2019 10:50:23 +0100 Subject: [PATCH] Allow staff to see 16 reviewers in the reviewers field, before only five was visible at a time. --- opentech/apply/funds/models/applications.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/opentech/apply/funds/models/applications.py b/opentech/apply/funds/models/applications.py index 6568029ca..d9a3d4d24 100644 --- a/opentech/apply/funds/models/applications.py +++ b/opentech/apply/funds/models/applications.py @@ -1,5 +1,6 @@ from datetime import date +from django import forms from django.conf import settings from django.core.exceptions import ValidationError from django.db import models @@ -108,7 +109,7 @@ class ApplicationBase(EmailForm, WorkflowStreamForm): # type: ignore content_panels = WorkflowStreamForm.content_panels + [ FieldPanel('approval_form'), - FieldPanel('reviewers'), + FieldPanel('reviewers', widget=forms.SelectMultiple(attrs={'size': '16'})), FieldPanel('slack_channel'), ] @@ -174,7 +175,7 @@ class RoundBase(WorkflowStreamForm, SubmittableStreamForm): # type: ignore FieldPanel('end_date'), ]), ], heading="Dates"), - FieldPanel('reviewers'), + 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."), @@ -407,7 +408,7 @@ class LabBase(EmailForm, WorkflowStreamForm, SubmittableStreamForm): # type: ig content_panels = WorkflowStreamForm.content_panels + [ FieldPanel('approval_form'), FieldPanel('lead'), - FieldPanel('reviewers'), + FieldPanel('reviewers', widget=forms.SelectMultiple(attrs={'size': '16'})), FieldPanel('slack_channel'), ] -- GitLab