{% extends "admin/core/base.html" %} {% load static %} {% load foundation %} {% load truncate %} {% block title %}Article Workflow Manager{% endblock %} {% block title-section %}Article Workflow Manager{% endblock %} {% block title-sub %}{{ article.safe_title }}{% endblock %} {% block breadcrumbs %} {{ block.super }}
  • Manager
  • #{{ article.pk }} {{ article.safe_title|truncatesmart }}
  • Article Workflow Manager
  • {% endblock %} {% block body %}

    Past Stages

    This tool should be used with extreme caution. Once and article is moved back along the workflow it has to be manually moved forward again.

    Article Current Stage: {{ article.get_stage_display }}.

    This article has been through the following stages:

    {% csrf_token %} {% for stage in article.workflow_stages %} {% endfor %}
    Stage Date
    {{ stage.element.element_name|capfirst }} {{ stage.timestamp }} {% if stage.element.stage == article.stage or stage.element.stage == 'Unassigned' and article.stage == 'Under Review' %} Current Stage {% else %} {% endif %}

    Archive

    {% if article.stage == 'Archived' %}

    This article has already been archived.

    {% else %}

    Archiving an article will remove it from the workflow, essentially tombstoning it. You can still access it through the Article Archive.

    {% csrf_token %}
    {% endif %}
    {% endblock %}