From 2507c1de6ab0ca31e6785adb1c4ff2206bba0f7f Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Tue, 25 Jul 2017 20:47:04 +0200 Subject: [PATCH] Remove redundant field properties --- submissions/models.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/submissions/models.py b/submissions/models.py index f71f89cba..790619f7d 100644 --- a/submissions/models.py +++ b/submissions/models.py @@ -427,10 +427,11 @@ class EICRecommendation(models.Model): date_submitted = models.DateTimeField('date submitted', default=timezone.now) remarks_for_authors = models.TextField(blank=True, null=True) requested_changes = models.TextField(verbose_name="requested changes", blank=True, null=True) - remarks_for_editorial_college = models.TextField( - default='', blank=True, null=True, - verbose_name='optional remarks for the Editorial College') + remarks_for_editorial_college = models.TextField(blank=True, + verbose_name='optional remarks for the' + ' Editorial College') recommendation = models.SmallIntegerField(choices=REPORT_REC) + # Editorial Fellows who have assessed this recommendation: eligible_to_vote = models.ManyToManyField(Contributor, blank=True, related_name='eligible_to_vote') -- GitLab