{% extends "admin/core/base.html" %} {% load static %} {% load roles %} {% load securitytags %} {% block title %}Production{% endblock title %} {% block title-section %}Production{% endblock %} {% block breadcrumbs %} {{ block.super }} {% include "elements/breadcrumbs/production_manager_base.html" %} {% endblock breadcrumbs %} {% block body %} {% user_has_role request 'editor' as user_is_editor %} {% is_production as production %} {% is_editor as editor %} {% is_section_editor as section_editor %}
{% if editor or section_editor %}

Awaiting Assignment

{% for article in production_articles %} {% include "elements/production/card.html" with request=request type="assignment" %} {% endfor %}

In Progress

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

Assigned to Me

{% for article in my_articles %} {% include "elements/production/card.html" with request=request type="assigned" %} {% endfor %}
{% endif %}
{% for article in production_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 Production Manager:

{% for production_manager in production_managers %} {% endfor %}
{% endfor %} {% endblock body %}