{% extends "admin/core/base.html" %} {% load roles %} {% block title %}Dashboard{% endblock title %} {% block title-section %}Dashboard{% endblock %} {% block title-sub %}Summary{% endblock %} {% block body %}
{% include "admin/elements/no_stage.html" %}
{% include "admin/elements/core/editor_dashboard.html" %}
{% if is_reviewer %}

Reviewer

View Requests
{{ assigned_articles_for_user_review_count }} Review Requests
{{ assigned_articles_for_user_review_accepted_count }} Accepted Reviews
{{ assigned_articles_for_user_review_completed_count }} Completed Reviews
{% endif %} {% user_has_role request 'copyeditor' as copyeditor %} {% if copyeditor and 'copyediting' in workflow_elements %}

Copyeditor

View Requests
{{ copyeditor_requests }} Copyedit Requests
{{ copyeditor_accepted_requests }} Accepted Requests
{{ copyeditor_completed_requests }} Completed Requests
{% endif %} {% user_has_role request 'typesetter' as typesetter %} {% if typesetter and 'production' in workflow_elements %}

Production

View Requests
{{ typeset_tasks }} Production Requests
{{ typeset_in_progress_tasks }} Accepted Requests
{{ typeset_completed_tasks }} Completed Requests
{% endif %} {% user_has_role request 'production' as production %} {% if production and 'production' in workflow_elements %}

Production Manager

View Requests
{{ production_articles_count }} Articles in Production
{% endif %} {% user_has_role request 'proofreader' as proofreader %} {% if 'proofing' in workflow_elements %} {% if proofreader or is_author %}

Proofreader

View Requests
{{ new_proofing }} Requests
{{ active_proofing }} Accepted
{{ completed_proofing }} Completed
{% endif %} {% endif %} {% if typesetter and 'proofing' in workflow_elements %}

Proofing Corrections

View Requests
{{ new_proofing_typesetting }} Production Requests
{{ active_proofing_typesetting }} Accepted Requests
{{ completed_proofing_typesetting }} Completed Requests
{% endif %} {% for element in request.journal.workflow_plugin_elements %} {% if element.settings.dashboard_template %} {% include element.settings.dashboard_template %} {% endif %} {% endfor %} {% user_has_role request 'section-editor' as sectioneditor %} {% if sectioneditor %}

Section Editor

{% for assignment in section_editor_articles %} {% empty %} {% endfor %}
ID Title Authors Submitted Current Stage
{{ assignment.article.pk }} {{ assignment.article.safe_title }} {{ assignment.article.author_list }} {{ assignment.article.date_submitted }} {{ assignment.article.get_stage_display }}
No Articles Assigned
{% endif %} {% if is_author %} {% include "admin/elements/core/author_dashboard.html" %} {% endif %}
{% endblock body %} {% block js %} {% if published_submissions %}{% include "admin/elements/datatables.html" with target="#published" sort=2 order="desc" %}{% endif %} {% include "admin/elements/datatables.html" with target="#active" sort=2 order="desc" %} {% include "admin/elements/datatables.html" with target="#incomplete" sort=2 order="desc" %} {% endblock %}