{% extends "admin/core/base.html" %} {% load static %} {% block title %}Article {{ article.pk }} Log{% endblock %} {% block title-section %}Article {{ article.pk }} Log{% endblock %} {% block title-sub %}{{ article.safe_title }}{% endblock %} {% block body %}

Log Entries

{% if settings.ENABLE_ENHANCED_MAILGUN_FEATURES %}
{% csrf_token %}
{% endif %} {% if return %} Back{% endif %}
{% if settings.ENABLE_ENHANCED_MAILGUN_FEATURES %}{% endif %} {% for entry in log_entries %} {% if settings.ENABLE_ENHANCED_MAILGUN_FEATURES %}{% endif %} {% endfor %}
Entry Type To (if email) Subject (if email) Date Actor LevelEmail Status
{{ entry.types }} {% if entry.is_email %}{% for email in entry.to %}{{ email }}{% if not forloop.last %}; {% endif %}{% endfor %}{% else %}---{% endif %} {{ entry.email_subject }} {{ entry.date|date:"Y-m-d H:i:s" }} {% if entry.actor %}{{ entry.actor.full_name }}{% else %}Janeway System{% endif %} {{ entry.get_level_display|capfirst }} {% if entry.is_email %} {{ entry.get_message_status_display }} {% endif %} View Content

Article Stage log

{% for entry in article.articlestagelog_set.all %} {% endfor %}
Entered Stage Date/Time
{{ entry.stage_to }} {{ entry.date_time }}
{% for entry in log_entries %} {% include "elements/journal/log_description.html" with entry=entry %} {% endfor %} {% endblock %} {% block js %} {% include "elements/datatables.html" with target="#log" order='desc' sort=3 %} {% endblock %}