diff --git a/submissions/helpers.py b/submissions/helpers.py index 8d648386a61266c5aa820be56e00616642ab23ee..0942d78774c37b6d22602490e73acff9d3d2dc57 100644 --- a/submissions/helpers.py +++ b/submissions/helpers.py @@ -31,7 +31,8 @@ def check_verified_author(submission, user): def check_unverified_author(submission, user): - """Check if user may be author of Submission. + """ + Check if user may be author of Submission. Only return true if author is unverified. Verified authors will return false. """ diff --git a/submissions/templates/partials/submissions/submission_quick_actions.html b/submissions/templates/partials/submissions/submission_quick_actions.html index e2d04737d44f7662b87aaff5e34ad2f4bb6277a4..ed2f200a5f3438f91139190122dbaf4c2ff00c62 100644 --- a/submissions/templates/partials/submissions/submission_quick_actions.html +++ b/submissions/templates/partials/submissions/submission_quick_actions.html @@ -1,72 +1,79 @@ {% if perms.scipost.can_submit_comments %} - <div class="submission-quick-actions"> - <h3>Actions</h3> - <ul class="my-2 pl-4"> - {% if submission.is_open_for_reporting and perms.scipost.can_referee %} - {% if not is_author and not is_author_unchecked %} - <li> - <h4 class="mb-0"> - <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">{% if unfinished_report_for_user %}Finish your report{% else %}Contribute a Report{% endif %}</a> - </h4> - <div class="text-danger mt-1 mb-3">Deadline for reporting: {{ submission.reporting_deadline|date:"Y-m-d" }}</div> - </li> - <li> - <h4> - <a href="mailto:?subject=Contribute a Report on a Submission to SciPost?&body={% autoescape on %}{% include 'submissions/contributor_referee_invitation_email.html' %}{% endautoescape %}&cc=edadmin@scipost.org">Invite an expert you know to contribute a Report</a> - </h4> - </li> - {% elif is_author_unchecked %} - <li> - <h4> - <a href="javascript:;" class="disabled">Contribute a Report</a> - <small class="text-danger">[deactivated]</small> - </h4> - <div class="border bg-light p-2 mb-2"> - The system flagged you as a potential author of this Submission. Please <a href="{% url 'scipost:claim_authorships' %}">clarify this here</a>. - You are not allowed to contributor a Report until your authorship has been verified. - </div> - </li> - {% elif is_author %} - <li> - <h4> - <a href="javascript:;" class="disabled">Contribute a Report</a> - <small class="text-danger">[deactivated]</small> - </h4> - <div class="border bg-white p-2 mb-2"> - You are a verified author. Therefore, you can not submit a Report.</span> - </div> - </li> - {% endif %} - {% elif unfinished_report_for_user %} - <li><i class="fa fa-exclamation"></i> You have an unfinished report for this submission. You can <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here</a>.</li> - {% else %} - <li class="py-1">Reporting for this Submission is closed.</li> - {% endif %} +<div class="submission-quick-actions"> + <h3>Actions</h3> + <ul class="my-2 pl-4"> + {% if submission.is_open_for_reporting and perms.scipost.can_referee %} + <li> + <h4> + {% if not is_author and not is_author_unchecked %} + <a href="mailto:?subject=Contribute a Report on a Submission to SciPost?&body={% autoescape on %}{% include 'submissions/contributor_referee_invitation_email.html' %}{% endautoescape %}&cc=edadmin@scipost.org">Invite an expert you know to contribute a Report</a> + {% else %} + <a href="mailto:?subject=Contribute a Report on a Submission to SciPost?&body={% autoescape on %}{% include 'submissions/author_referee_invitation_email.html' %}{% endautoescape %}&cc=edadmin@scipost.org">Invite an expert you know to contribute a Report</a> + {% endif %} + </h4> + </li> + {% if not is_author and not is_author_unchecked %} + <li> + <h4 class="mb-0"> + <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">{% if unfinished_report_for_user %}Finish your report{% else %}Contribute a Report{% endif %}</a> + </h4> + <div class="text-danger mt-1 mb-3">Deadline for reporting: {{ submission.reporting_deadline|date:"Y-m-d" }}</div> + </li> + {% elif is_author_unchecked %} + <li> + <h4> + <a href="javascript:;" class="disabled">Contribute a Report</a> + <small class="text-danger">[deactivated]</small> + </h4> + {% if request.user.contributor in submission.authors_claims.all %} + <i class="fa fa-exclamation-circle text-warning"></i> Authors are not allowed to submit a Report. Your authorship claim on this Submission is pending verification by our Editorial Administration. + {% else %} + <div class="border bg-light p-2 mb-2"> + The system flagged you as a potential author of this Submission. Please <a href="{% url 'scipost:claim_authorships' %}">clarify this here</a>. You are not allowed to contribute a Report until your (non-)authorship has been verified. + </div> + {% endif %} + </li> + {% elif is_author %} + <li> + <h4> + <a href="javascript:;" class="disabled">Contribute a Report</a> + <small class="text-danger">[deactivated]</small> + </h4> + <div class="border bg-white p-2 mb-2"> + You are a verified author. Therefore, you can not submit a Report. + </div> + </li> + {% endif %} + {% elif unfinished_report_for_user %} + <li><i class="fa fa-exclamation"></i> You have an unfinished report for this submission. You can <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here</a>.</li> + {% else %} + <li class="py-1">Reporting for this Submission is closed.</li> + {% endif %} - {% if submission.open_for_commenting %} - {% if perms.scipost.can_submit_comments %} - <li class="pt-1"> - <h4><a href="#contribute_comment">Contribute a Comment</a></h4> - </li> - {% endif %} - {% else %} - <li class="py-1">Commenting on this Submission is closed.</li> - {% endif %} + {% if submission.open_for_commenting %} + {% if perms.scipost.can_submit_comments %} + <li class="pt-1"> + <h4><a href="#contribute_comment">Contribute a Comment</a></h4> + </li> + {% endif %} + {% else %} + <li class="py-1">Commenting on this Submission is closed.</li> + {% endif %} - {% if submission.editor_in_charge == request.user.contributor %} - <li class="pt-1"> - <h4><a href="{% url 'submissions:editorial_page' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">Go to the Editorial Page</a></h4> - </li> - {% endif %} - </ul> + {% if submission.editor_in_charge == request.user.contributor %} + <li class="pt-1"> + <h4><a href="{% url 'submissions:editorial_page' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">Go to the Editorial Page</a></h4> + </li> + {% endif %} + </ul> - {% if perms.scipost.can_manage_reports %} - <h3 class="mt-4">Administrative actions</h3> - <ul class="pl-4"> - <li> - <a href="{% url 'submissions:treated_submission_pdf_compile' submission.preprint.identifier_w_vn_nr %}">Update the Refereeing Package pdf</a> - </li> - </ul> - {% endif %} - </div> + {% if perms.scipost.can_manage_reports %} + <h3 class="mt-4">Administrative actions</h3> + <ul class="pl-4"> + <li> + <a href="{% url 'submissions:treated_submission_pdf_compile' submission.preprint.identifier_w_vn_nr %}">Update the Refereeing Package pdf</a> + </li> + </ul> + {% endif %} +</div> {% endif %} diff --git a/submissions/templates/submissions/author_referee_invitation_email.html b/submissions/templates/submissions/author_referee_invitation_email.html new file mode 100644 index 0000000000000000000000000000000000000000..ad372e3801b7d7118e04ad5cdf86809b164d3119 --- /dev/null +++ b/submissions/templates/submissions/author_referee_invitation_email.html @@ -0,0 +1,23 @@ +[PLEASE FILL IN THE "TO" FIELD ABOVE (keeping edadmin@scipost.org in cc)]%0D%0A +%0D%0A +Dear ..., +%0D%0A +%0D%0A +I would like to bring your attention to a manuscript of mine which was recently submitted to SciPost. Given your expertise, you might consider contributing a Report or Comment as part of the open peer-witnessed refereeing process: +%0D%0A +%0D%0A +{{ submission.title }} +%0D%0A +by {{ submission.author_list }}%0D%0A +(see https://scipost.org{{ submission.get_absolute_url }} ). +%0D%0A +%0D%0A +The refereeing deadline is currently set at {{ submission.reporting_deadline|date:"d M Y" }}. +%0D%0A +%0D%0A +Since SciPost runs an open peer-witnessed refereeing process, your input could help in the evaluation of this manuscript. To provide your expert opinion, after logging in, you can simply follow the "Contribute a Report" link on the submission page linked above. You will find refereeing guidelines at https://scipost.org/submissions/referee_guidelines and further links therein. +%0D%0A +%0D%0A +[YOUR SIGNATURE] +%0D%0A +%0D%0A diff --git a/submissions/templates/submissions/submission_detail.html b/submissions/templates/submissions/submission_detail.html index a0e4e26e8c72eeb0b081a9a1510f5a3165d33021..d3ea4ce107b39a19ac659278c369f777fca39d8c 100644 --- a/submissions/templates/submissions/submission_detail.html +++ b/submissions/templates/submissions/submission_detail.html @@ -14,249 +14,161 @@ {% block content %} <div class="row"> - {% if is_author_unchecked %} - <div class="col-12"> - <div class="border border-warning py-2 px-3 mb-3"> - <h3><i class="fa fa-exclamation-circle text-warning"></i> Please advise</h3> - The system flagged you as a potential author of this Submission. Please <a href="{% url 'scipost:claim_authorships' %}">clarify this here</a>. Particular actions and information may be blocked until your authorship has been verified. - </div> - </div> + {% if is_author_unchecked %} + <div class="col-12"> + <div class="border border-warning py-2 px-3 mb-3"> + {% if request.user.contributor in submission.authors_claims.all %} + <i class="fa fa-exclamation-circle text-warning"></i> Your authorship claim on this Submission is pending verification by our Editorial Administration. + {% else %} + <h3><i class="fa fa-exclamation-circle text-warning"></i> Please advise</h3> + The system flagged you as a potential author of this Submission. Please <a href="{% url 'scipost:claim_authorships' %}">clarify this here</a>. Particular actions and information may be blocked until your authorship has been verified. + {% endif %} + </div> + </div> + {% endif %} + + <div class="col-lg-8"> + <!-- Notifications --> + {% if unfinished_report_for_user %} + <div class="w-100"> + <div class="border border-warning py-2 px-3 mb-3"> + <h3><i class="fa fa-exclamation-circle"></i> You have an unfinished report for this submission, <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here.</a></h3> + </div> + </div> + {% endif %} + + {% if is_author %} + <div class="w-100"> + <div class="border py-2 px-3 mb-3"> + <i class="fa fa-check-circle text-success"></i> You are a verified author of this Submission. + </div> + </div> + {% endif %} + <!-- End notifications --> + + <h2>SciPost Submission Page</h2> + <h1 class="text-primary">{{submission.title}}</h1> + <h3 class="mb-3">by {{submission.author_list}}</h3> + + {% if user.is_authenticated %} + {% with type_id=submission|content_type_id %} + {% include 'helpdesk/_ticket_for_object_link.html' with type_id=type_id id=submission.id model="Submission" %} + {% endwith %} {% endif %} - <div class="col-lg-8"> - <!-- Notifications --> - {% if unfinished_report_for_user %} - <div class="w-100"> - <div class="border border-warning py-2 px-3 mb-3"> - <i class="fa fa-exclamation-circle"></i> You have an unfinished report for this submission, <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here.</a></h3> - </div> - </div> - {% endif %} - {% if is_author %} - <div class="w-100"> - <div class="border py-2 px-3 mb-3"> - <i class="fa fa-check-circle"></i> You are a verified author. - </div> - </div> - {% elif is_author_unchecked %} - <div class="w-100"> - <div class="border border-warning py-2 px-3 mb-3"> - <i class="fa fa-question-circle"></i> The system flagged you as a potential author of this Submission. Please <a href="{% url 'scipost:claim_authorships' %}">clarify this here</a>. - </div> - </div> - {% endif %} - <!-- End notifications --> - - <h2>SciPost Submission Page</h2> - <h1 class="text-primary">{{submission.title}}</h1> - <h3 class="mb-3">by {{submission.author_list}}</h3> - - {% if user.is_authenticated %} - {% with type_id=submission|content_type_id %} - {% include 'helpdesk/_ticket_for_object_link.html' with type_id=type_id id=submission.id model="Submission" %} - {% endwith %} - {% endif %} - - <div class="pl-2 mb-1"> - {% if submission.publication and submission.publication.is_published %} - <h4> - - Published as - <a href="{{submission.publication.get_absolute_url}}"> - {{ submission.publication.get_journal.abbreviation_citation }} - {% if submission.publication.in_issue.in_volume %} <strong>{{ submission.publication.in_issue.in_volume.number }}</strong>,{% endif %} - {{ submission.publication.paper_nr }} - ({{ submission.publication.publication_date|date:'Y' }}) - </a> - </h4> - {% endif %} - - {% if unfinished_report_for_user %} - <h4> - <i class="fa fa-exclamation-circle text-danger"></i> - You have an unfinished report for this submission, <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here.</a> - </h4> - {% endif %} - - {% if not submission.is_current %} - <h4 class="text-danger"> - <i class="fa fa-exclamation-circle text-danger"></i> - This is not the current version. - </h4> - {% endif %} - - {% if submission.editor_in_charge and request.user.contributor == submission.editor_in_charge %} - <h4 class="my-4">- You are the Editor-in-charge, <a href="{% url 'submissions:editorial_page' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">go to the Editorial Page</a> to take editorial actions.</h4> - {% endif %} - - </div> - - <h3 class="mt-4">Submission summary</h3> - {% include 'partials/submissions/submission_summary.html' with submission=submission hide_title=1 show_abstract=1 %} - - {% include 'partials/submissions/submission_status.html' with submission=submission %} - - {% include 'partials/submissions/submission_topics.html' with submission=submission %} - <br/> - - {% if submission.author_comments %} - <h3>Author comments upon resubmission</h3> - <div class="blockquote"> - {{ submission.author_comments|linebreaks }} - </div> - {% endif %} - - {% if submission.list_of_changes %} - <h3>List of changes</h3> - <div class="blockquote">{{ submission.list_of_changes|linebreaks }}</div> - {% endif %} + <div class="pl-2 mb-1"> + {% if submission.publication and submission.publication.is_published %} + <h4> + - Published as + <a href="{{submission.publication.get_absolute_url}}"> + {{ submission.publication.get_journal.abbreviation_citation }} + {% if submission.publication.in_issue.in_volume %} <strong>{{ submission.publication.in_issue.in_volume.number }}</strong>,{% endif %} + {{ submission.publication.paper_nr }} + ({{ submission.publication.publication_date|date:'Y' }}) + </a> + </h4> + {% endif %} + + {% if unfinished_report_for_user %} + <h4> + <i class="fa fa-exclamation-circle text-danger"></i> + You have an unfinished report for this submission, <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here.</a> + </h4> + {% endif %} + + {% if not submission.is_current %} + <h4 class="text-danger"> + <i class="fa fa-exclamation-circle text-danger"></i> + This is not the current version. + </h4> + {% endif %} + + {% if submission.editor_in_charge and request.user.contributor == submission.editor_in_charge %} + <h4 class="my-4">- You are the Editor-in-charge, <a href="{% url 'submissions:editorial_page' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">go to the Editorial Page</a> to take editorial actions.</h4> + {% endif %} + </div> - <div class="col-lg-4"> - {% for invitation in invitations %} - {% include 'partials/submissions/refereeing_status_card.html' with invitation=invitation %} - {% endfor %} + <h3 class="mt-4">Submission summary</h3> + {% include 'partials/submissions/submission_summary.html' with submission=submission hide_title=1 show_abstract=1 %} + + {% include 'partials/submissions/submission_status.html' with submission=submission %} - {% include 'partials/submissions/submission_refereeing_history.html' with submission=submission %} + {% include 'partials/submissions/submission_topics.html' with submission=submission %} + <br/> - {% include 'partials/submissions/submission_quick_actions.html' with submission=submission %} + {% if submission.author_comments %} + <h3>Author comments upon resubmission</h3> + <div class="blockquote"> + {{ submission.author_comments|linebreaks }} </div> + {% endif %} + + {% if submission.list_of_changes %} + <h3>List of changes</h3> + <div class="blockquote">{{ submission.list_of_changes|linebreaks }}</div> + {% endif %} + </div> + + <div class="col-lg-4"> + {% for invitation in invitations %} + {% include 'partials/submissions/refereeing_status_card.html' with invitation=invitation %} + {% endfor %} + + {% include 'partials/submissions/submission_refereeing_history.html' with submission=submission %} + + {% include 'partials/submissions/submission_quick_actions.html' with submission=submission %} + </div> </div> {% if is_author %} - {% include 'partials/submissions/submission_author_information.html' with submission=submission %} +{% include 'partials/submissions/submission_author_information.html' with submission=submission %} {% elif can_read_editorial_information %} - {% include 'partials/submissions/submission_editorial_information.html' with submission=submission %} +{% include 'partials/submissions/submission_editorial_information.html' with submission=submission %} {% endif %} -{% comment %} - {% if perms.scipost.can_submit_comments %} - <div class="row"> - <div class="col-12"> - <h3 class="highlight">Actions</h3> - <ul> - {% if submission.is_open_for_reporting or 1 and perms.scipost.can_referee %} - {% if not is_author and not is_author_unchecked %} - <li> - <h3><a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">{% if unfinished_report_for_user %}Finish your report{% else %}Contribute a Report{% endif %}</a></h3> - <div class="text-danger">Deadline for reporting: {{ submission.reporting_deadline|date:"Y-m-d" }}</div> - </li> - <li> - <h4><a href="mailto:?subject=Contribute a Report on a Submission to SciPost?&body={% autoescape on %}{% include 'submissions/contributor_referee_invitation_email.html' %}{% endautoescape %}&cc=edadmin@scipost.org">Invite an expert you know to contribute a Report</a></h4> - </li> - {% elif is_author_unchecked %} - <li> - <h3><a href="javascript:;">Contribute a Report</a> <small><span class="text-danger">[deactivated]</span></small></h3> - <div class="border border-warning py-2 px-3 mb-2"> - The system flagged you as a potential author of this Submission. Please <a href="{% url 'scipost:claim_authorships' %}">clarify this here</a>. You are not allowed to contributor a Report until your authorship has been verified. - </div> - </li> - {% elif is_author %} - <li> - <a href="javascript:;" disabled>Contribute a Report</a> <br><span class="text-danger">You are a verified author. Therefore, you can not submit a Report.</span>. - </li> - {% endif %} - {% elif unfinished_report_for_user %} - <li><i class="fa fa-exclamation"></i> You have an unfinished report for this submission. You can <a href="{% url 'submissions:submit_report' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">finish your report here</a>.</li> - {% else %} - <li>Reporting for this Submission is closed.</li> - {% endif %} - {% if submission.open_for_commenting %} - {% if perms.scipost.can_submit_comments %} - <li><h3><a href="#contribute_comment">Contribute a Comment</a></h3></li> - {% endif %} - {% else %} - <li>Commenting on this Submission is closed.</li> - {% endif %} - {% if submission.editor_in_charge == request.user.contributor %} - <li><a href="{% url 'submissions:editorial_page' identifier_w_vn_nr=submission.preprint.identifier_w_vn_nr %}">Go to the Editorial Page</a></li> - {% endif %} - {% if perms.scipost.can_manage_reports %} - <li> - <a href="{% url 'submissions:treated_submission_pdf_compile' submission.preprint.identifier_w_vn_nr %}">Update the Refereeing Package pdf</a> - </li> - {% endif %} - </ul> - </div> - </div> - {% endif %} -{% endcomment %} - {% if submission.reports.accepted %} - <hr class="lg my-4"> - - <div class="row"> - <div class="col-12"> - <div class="mb-3"> - <h2 class="highlight">Reports on this Submission</h2> - <a href="javascript:;" data-toggle="toggle" data-target="#reports">Show/hide Reports view</a> - </div> - </div> - </div> +<hr class="lg my-4"> - <div id="reports"> - {% for report in submission.reports.accepted %} - {% include 'partials/submissions/report_public.html' with report=report user=request.user perms=perms %} - {% endfor %} +<div class="row"> + <div class="col-12"> + <div class="mb-3"> + <h2 class="highlight">Reports on this Submission</h2> + <a href="javascript:;" data-toggle="toggle" data-target="#reports">Show/hide Reports view</a> </div> -{% endif %} + </div> +</div> -{% comment %} - {% if invited_reports %} - <hr class="lg my-4"> - - <div class="row"> - <div class="col-12"> - <div class="mb-3"> - <h2 class="highlight">Invited Reports on this Submission</h2> - <a href="javascript:;" data-toggle="toggle" data-target="#invitedreportslist">Show/hide invited reports view</a> - </div> - </div> - </div> - - <div id="invitedreportslist"> - {% for report in invited_reports %} - {% include 'partials/submissions/report_public.html' with report=report user=request.user perms=perms %} - {% endfor %} - </div> - {% endif %} +<div id="reports"> + {% for report in submission.reports.accepted %} + {% include 'partials/submissions/report_public.html' with report=report user=request.user perms=perms %} + {% endfor %} +</div> +{% endif %} - {% if contributed_reports %} - <hr class="lg my-4"> - - <div class="mb-3"> - <h2 class="highlight">Contributed Reports on this Submission</h2> - <a href="javascript:;" data-toggle="toggle" data-target="#contributedreportslist">Show/hide contributed reports</a> - </div> - <div id="contributedreportslist"> - {% for report in contributed_reports %} - {% include 'partials/submissions/report_public.html' with report=report user=request.user perms=perms %} - {% endfor %} - </div> - {% endif %} -{% endcomment %} {% if not user.is_authenticated %} - {% if submission.comments.vetted.exists %} - <h3 class="text-center my-3"><a href="{% url 'scipost:login' %}?next={{request.path}}">Login to report</a></h3> - {% else %} - <h3 class="text-center my-3"><a href="{% url 'scipost:login' %}?next={{request.path}}">Login to report or comment</a></h3> - {% endif %} +{% if submission.comments.vetted.exists %} +<h3 class="text-center my-3"><a href="{% url 'scipost:login' %}?next={{request.path}}">Login to report</a></h3> +{% else %} +<h3 class="text-center my-3"><a href="{% url 'scipost:login' %}?next={{request.path}}">Login to report or comment</a></h3> +{% endif %} {% endif %} {% if submission.comments.vetted %} - <hr class="lg"> - {% include 'scipost/comments_block.html' with comments=submission.comments.vetted %} +<hr class="lg"> +{% include 'scipost/comments_block.html' with comments=submission.comments.vetted %} {% endif %} {# This is an apparent redundant logic block; however, it makes sure the "login to ..." links wouldn't be shown twice! #} {% if comment_form %} - {% if not user.is_authenticated and submission.comments.vetted.exists %} - {% include 'comments/new_comment.html' with form=comment_form object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting user_is_referee=submission|user_is_referee:request.user %} - {% elif user.is_authenticated %} - {% include 'comments/new_comment.html' with form=comment_form object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting user_is_referee=submission|user_is_referee:request.user %} - {% endif %} +{% if not user.is_authenticated and submission.comments.vetted.exists %} +{% include 'comments/new_comment.html' with form=comment_form object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting user_is_referee=submission|user_is_referee:request.user %} +{% elif user.is_authenticated %} +{% include 'comments/new_comment.html' with form=comment_form object_id=submission.id type_of_object='submission' open_for_commenting=submission.open_for_commenting user_is_referee=submission|user_is_referee:request.user %} +{% endif %} {% endif %} {% endblock content %}