{% extends "admin/core/base.html" %} {% load static %} {% block page_title %}Proofing{% endblock page_title %} {% block title-section %}Proofing{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/proofing_manager_base.html" %} {% endblock breadcrumbs %} {% block body %}

Awaiting Assignment

{% for article in proofing_articles %} {% include "elements/proofing/card.html" with article=article type="assignment" %} {% endfor %}

In Progress

{% for article in assigned_articles %} {% include "elements/proofing/card.html" with request=request type="assigned" %} {% endfor %}

Assigned to Me

{% for article in my_articles %} {% include "elements/proofing/card.html" with request=request type="assigned" %} {% endfor %}
{% for article in proofing_articles %}

 {{ article.safe_title }}

Summary

Authors Section License Language
{{ article.author_list }} {{ article.section.name }} {{ article.license }} {{ article.get_language_display }}

Tasks

Below is a list of tasks that are required to be complete in order to move the article to the next stage.

 Assign Proofing Manager:

{% for role in production_managers %} {% endfor %}

Summary

Authors Section License Language
{{ article.author_list }} {{ article.section.name }} {{ article.license }} {{ article.get_language_display }}

Tasks

Below is a list of tasks that are required to be complete in order to move the article to the next stage.

 Assign proofing manager:
{% endfor %} {% endblock body %}