{% extends "admin/core/base.html" %} {% load foundation %} {% load roles %} {% load static %} {% block title %}Draft Decision{% endblock title %} {% block admin-header %}Draft Decision{% endblock %} {% block title-sub %}#{{ article.pk }} / {{ article.correspondence_author.last_name }} / {{ article.safe_title }}{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/review_base.html" with subpage="yes" %}
  • Decision Helper
  • Draft a Decision
  • {% endblock breadcrumbs %} {% block body %} {% user_has_role request 'editor' as user_is_editor %}

    {% if draft %}Edit a Draft Decision{% else %}Add a Draft Decision{% endif %}

    {% if draft %}

    As this draft has been completed, any changes to the email text (eg. Due Date) will need to be made manually.

    Review reports are listed towards the bottom of this page and can assist you in evaluating this draft decision.


    Message from {{ draft.section_editor.full_name }}

    {{ draft.message_to_editor|safe }}

    {% else %}

    First select a decision (and also set a due date for any revisions). Once you have done this, the Draft Email to Author field will update to the correct template. You can then edit the email to your liking.

    {% endif %}
    {% csrf_token %} {{ form.decision|foundation }} {% if draft %}
    {% endif %} {{ form.editor|foundation }} {% if draft %}
    {% endif %} {% if draft %}
    {% endif %} {{ form.message_to_editor|foundation }} {% if draft %}
    {% endif %} {{ form.email_message|foundation }} {% if draft and user_is_editor %}

    Complete Reviews

    {% include "admin/elements/review/view_reviews.html" with reviews=article.completed_reviews_with_decision reviewer_names=True %} Decline Draft {% endif %}

    Existing Drafts

    {% for draft in article.decisiondraft_set.all %}

    {{ draft.get_decision_display }}

    Section Editor: {{ draft.section_editor.full_name }}
    Editor: {{ draft.editor.full_name }}
    Drafted: {{ draft.drafted }}
    {% if draft.editor_decision %}Editor Decision: {{ draft.get_editor_decision_display }}{% endif %}

    {% if not draft.editor_decision %}
    {% csrf_token %}
    Edit
    {% endif %}
    {% endfor %}
    {% if draft %}

    Decline Draft Decision

    Please provide a rationale for declining this draft decision. This will be sent to the Section Editor to make them aware.

    {% csrf_token %}
    {% endif %} {% endblock %} {% block js %} {% include "admin/elements/review/draft_decisions_js.html" %} {% endblock %}