-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy pathdecision.html
More file actions
89 lines (84 loc) · 4.38 KB
/
decision.html
File metadata and controls
89 lines (84 loc) · 4.38 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{% extends "admin/core/base.html" %}
{% load i18n %}
{% block title %}{{ decision|capfirst }} Article{% endblock title %}
{% block title-section %}{{ decision|capfirst }} Article{% endblock %}
{% block title-sub %}{% include "admin/elements/article_title_sub_pii.html" %}{% endblock %}
{% block breadcrumbs %}
{{ block.super }}
{% include "elements/breadcrumbs/review_base.html" with subpage="yes" %}
<li>{{ decision|capfirst }} Article</li>
{% endblock breadcrumbs %}
{% block body %}
<div class="large-12 columns">
<div class="box">
<div class="title-area">
<h2>Article Decision</h2>
</div>
<div class="content">
<p>Are you sure you want to {{ decision }} {{ article.safe_title }}?</p>
{% if decision == 'accept' %}
{% if article.journal.use_crossref %}
<div class="bs-callout">
<p>
This journal is set to use Crossref for DOI registration.
A DOI will be minted now, without registering any metadata. Author and article metadata will
be fully registered once this article is set for publication.
</p>
</div>
{% else %}
<div class="bs-callout bs-callout-danger">
<p>Note: DOI registration is not configured.</p>
</div>
{% endif %}
{% if accept_article_warning %}
<div class="bs-callout">
{{ accept_article_warning|safe }}
</div>
{% endif %}
{% endif %}
{% if decision == 'decline' and article.incomplete_reviews.count > 0 %}
<p>The following incomplete reviews will be marked as withdrawn:</p>
{% for review in article.incomplete_reviews %}
<div class="bs-callout bs-callout-warning">
<h4>{{ review.reviewer.full_name }} (Round {{ review.review_round.round_number }})</h4>
<p>This review was assigned
on {{ review.date_requested }} and was due
on {{ review.date_due }}</p>
<p>{% if review.date_accepted %}The reviewer agreed to do this review on {{ review.date_accepted }}.{% else %}The reviewer has not agreed to complete this review.{% endif %}</p>
</div>
<br />
{% endfor %}
{% endif %}
{% if article.hidden_completed_reviews %}
<div class="bs-callout bs-callout-danger">
<p>{% trans 'Note: This article has completed reviews that have not been made available to the author:' %}</p>
<ul>
{% for review in article.hidden_completed_reviews %}
<li><a target="_blank" href="{% url 'review_view_review' article.pk review.pk %}">#{{ review.pk }} - {{ review.reviewer.full_name }}</a></li>
{% endfor %}
</ul>
</div>
<br />
{% endif %}
<p>You can provide some information to the authors below:</p>
<div class="card">
<div class="card-divider">
<h4>To {{ article.correspondence_author.full_name|se_can_see_pii:article }}</h4>
<h5>From {{ request.user.full_name }}</h5>
</div>
{% if article.stage == 'Unassigned' %}
{% url 'review_unassigned_article' article.pk as cancel_url %}
{% else %}
{% url 'decision_helper' article.pk as cancel_url %}
{% endif %}
{% include 'admin/elements/email_form.html' with form=form skip=1 cancel_url=cancel_url %}
</div>
</div>
</div>
</div>
{% endblock body %}
{% block js %}
{{ block.super}}
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">
{{ form.media.js }}
{% endblock js %}