From 29cc741d36a96ce0255921c1d8027db33970a2b9 Mon Sep 17 00:00:00 2001 From: Jorran de Wit <jorrandewit@outlook.com> Date: Wed, 24 Jan 2018 15:08:06 +0100 Subject: [PATCH] Rename post-publication to post-edrec --- submissions/admin.py | 2 +- submissions/constants.py | 4 ++-- submissions/forms.py | 4 ++-- .../migrations/0007_auto_20180124_1501.py | 20 +++++++++++++++++++ submissions/models.py | 2 +- ...single_public_report_without_comments.html | 8 ++++---- .../templates/submissions/submit_report.html | 8 ++++---- 7 files changed, 34 insertions(+), 14 deletions(-) create mode 100644 submissions/migrations/0007_auto_20180124_1501.py diff --git a/submissions/admin.py b/submissions/admin.py index c052e6718..41ecfd38b 100644 --- a/submissions/admin.py +++ b/submissions/admin.py @@ -183,7 +183,7 @@ class ReportAdminForm(forms.ModelForm): class ReportAdmin(admin.ModelAdmin): - search_fields = ['author__user__last_name', 'submission'] + search_fields = ['author__user__last_name', 'submission__title'] list_display = ('author', 'status', 'doi_label', submission_short_title, 'date_submitted', ) list_display_links = ('author',) date_hierarchy = 'date_submitted' diff --git a/submissions/constants.py b/submissions/constants.py index 17c831be6..5d9c0a2b2 100644 --- a/submissions/constants.py +++ b/submissions/constants.py @@ -209,10 +209,10 @@ REPORT_STATUSES = ( ) REPORT_NORMAL = 'report_normal' -REPORT_POST_PUBLICATION = 'report_post_pub' +REPORT_POST_EDREC = 'report_post_edrec' REPORT_TYPES = ( (REPORT_NORMAL, 'Normal Report'), - (REPORT_POST_PUBLICATION, 'Post-publication Report'), + (REPORT_POST_EDREC, 'Post-Editorial Recommendation Report'), ) POST_PUBLICATION_STATUSES = [ diff --git a/submissions/forms.py b/submissions/forms.py index e56597024..3b35663eb 100644 --- a/submissions/forms.py +++ b/submissions/forms.py @@ -11,7 +11,7 @@ from .constants import ASSIGNMENT_BOOL, ASSIGNMENT_REFUSAL_REASONS, STATUS_RESUB STATUS_REJECTED, STATUS_REJECTED_VISIBLE, STATUS_RESUBMISSION_INCOMING,\ STATUS_DRAFT, STATUS_UNVETTED, REPORT_ACTION_ACCEPT, REPORT_ACTION_REFUSE,\ STATUS_VETTED, EXPLICIT_REGEX_MANUSCRIPT_CONSTRAINTS, SUBMISSION_STATUS,\ - POST_PUBLICATION_STATUSES, REPORT_POST_PUBLICATION, REPORT_NORMAL + POST_PUBLICATION_STATUSES, REPORT_POST_EDREC, REPORT_NORMAL from . import exceptions, helpers from .models import Submission, RefereeInvitation, Report, EICRecommendation, EditorialAssignment,\ iThenticateReport, EditorialCommunication @@ -584,7 +584,7 @@ class ReportForm(forms.ModelForm): self.fields[field].label += ' *' if self.submission.status in POST_PUBLICATION_STATUSES: - self.report_type = REPORT_POST_PUBLICATION + self.report_type = REPORT_POST_EDREC def save(self): """ diff --git a/submissions/migrations/0007_auto_20180124_1501.py b/submissions/migrations/0007_auto_20180124_1501.py new file mode 100644 index 000000000..fd947ed4e --- /dev/null +++ b/submissions/migrations/0007_auto_20180124_1501.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.4 on 2018-01-24 14:01 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('submissions', '0006_eicrecommendation_active'), + ] + + operations = [ + migrations.AlterField( + model_name='report', + name='report_type', + field=models.CharField(choices=[('report_normal', 'Normal Report'), ('report_post_edrec', 'Post-Editorial Recommendation Report')], default='report_normal', max_length=32), + ), + ] diff --git a/submissions/models.py b/submissions/models.py index 804a1a32d..d322603d0 100644 --- a/submissions/models.py +++ b/submissions/models.py @@ -393,7 +393,7 @@ class Report(SubmissionRelatedObjectMixin, models.Model): to explicitly implement the perticular differences in for example the form used. """ status = models.CharField(max_length=16, choices=REPORT_STATUSES, default=STATUS_UNVETTED) - report_type = models.CharField(max_length=16, choices=REPORT_TYPES, default=REPORT_NORMAL) + report_type = models.CharField(max_length=32, choices=REPORT_TYPES, default=REPORT_NORMAL) submission = models.ForeignKey('submissions.Submission', related_name='reports', on_delete=models.CASCADE) report_nr = models.PositiveSmallIntegerField(default=0, diff --git a/submissions/templates/submissions/_single_public_report_without_comments.html b/submissions/templates/submissions/_single_public_report_without_comments.html index 1d268af9d..af833812c 100644 --- a/submissions/templates/submissions/_single_public_report_without_comments.html +++ b/submissions/templates/submissions/_single_public_report_without_comments.html @@ -10,8 +10,8 @@ <h3> {% if report.anonymous %}(chose public anonymity) {% endif %}<a href="{{report.author.get_absolute_url}}">{{ report.author.user.first_name }} {{ report.author.user.last_name }}</a> on {{ report.date_submitted|date:'Y-n-j' }} - {% if report.report_type == 'report_post_pub' %} - <small><label class="label label-outline-primary ml-2">Post-publication Report</label></small> + {% if report.report_type == 'report_post_edrec' %} + <small><label class="label label-outline-primary ml-2">Post-Editorial Recommendation Report</label> <i class="fa fa-question-circle-o text-primary" data-toggle="tooltip" data-placement="auto" data-html="true" title="Post-Editorial Reports are submitted after the Editorial Recommendation has been formulated.<br>Hence, they have not been part of the College's decision to Publish the Submission." aria-hidden="true"></i></small> {% endif %} </h3> {% if report.doi_string or report.pdf_report %} @@ -67,8 +67,8 @@ <h3> {% if report.anonymous %}Anonymous Report {{report.report_nr}}{% else %}<a href="{{report.author.get_absolute_url}}">{{ report.author.user.first_name }} {{ report.author.user.last_name }}</a>{% endif %} on {{ report.date_submitted|date:'Y-n-j' }} - {% if report.report_type == 'report_post_pub' %} - <small><label class="label label-outline-primary ml-2">Post-publication Report</label></small> + {% if report.report_type == 'report_post_edrec' %} + <small><label class="label label-outline-primary ml-2">Post-Editorial Recommendation Report</label> <i class="fa fa-question-circle-o text-primary" data-toggle="tooltip" data-placement="auto" data-html="true" title="Post-Editorial Reports are submitted after the Editorial Recommendation has been formulated.<br>Hence, they have not been part of the College's decision to Publish the Submission." aria-hidden="true"></i></small> {% endif %} </h3> {% if report.doi_string or report.pdf_report %} diff --git a/submissions/templates/submissions/submit_report.html b/submissions/templates/submissions/submit_report.html index dbfc759f8..ed409eda4 100644 --- a/submissions/templates/submissions/submit_report.html +++ b/submissions/templates/submissions/submit_report.html @@ -91,9 +91,9 @@ {% endif %} </div> </div> - {% if form.report_type == 'report_post_pub' %} + {% if form.report_type == 'report_post_edrec' %} <div class="card border-warning my-4"> - <div class="card-body">The Editorial Recommendation for this Submission has already been formulated. Therefore, your report will be flagged as <label class="label label-warning">Post-publication Report</label>. + <div class="card-body">The Editorial Recommendation for this Submission has already been formulated. Therefore, your report will be flagged as <label class="label label-warning">Post-Editorial Recommendation Report</label>. </div> </div> {% endif %} @@ -103,9 +103,9 @@ <p>Any fields with an asterisk (*) are required.</p> <input class="btn btn-primary" type="submit" name="save_submit" value="Submit your report"/> <input class="btn btn-secondary ml-2" type="submit" name="save_draft" value="Save your report as draft"/> - {% if form.report_type == 'report_post_pub' %} + {% if form.report_type == 'report_post_edrec' %} <div class="card border-warning mt-4"> - <div class="card-body">The Editorial Recommendation for this Submission has already been formulated. Therefore, your report will be flagged as <label class="label label-warning">Post-publication Report</label>. + <div class="card-body">The Editorial Recommendation for this Submission has already been formulated. Therefore, your report will be flagged as <label class="label label-warning">Post-Editorial Recommendation Report</label>. </div> </div> {% endif %} -- GitLab