{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block extrastyle %} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if action_list %} {% for action in action_list %} {% endfor %}
{% trans 'Date/time' %} {% trans 'User' %} {% trans 'Action' %}
{{ action.action_time|date:"DATETIME_FORMAT" }} {{ action.user.get_username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %} {{ action.change_message }}
{% else %}

{% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}

{% endif %}
{% if history_list %}

{% trans "Workflow History" %}

{% for history in history_list %} {% endfor %} {% if todo_list %} {% for todo in todo_list %} {% endfor %} {% endif %}
{% trans 'Date/time' %} {% trans 'User' %} {% trans 'node' %} {% trans 'Action' %} {% trans 'Workflow Memo' %}
{{ history.pro_time|date:"DATETIME_FORMAT" }} {{ history.user.get_username }}{% if history.user.get_full_name %} ({{ history.user.get_full_name }}){% endif %} {{ history.get_node_desc }} {{ history.get_action_desc }} {{ history.get_memo_desc }}
{% if todo.is_read %}{{ todo.read_time|date:"DATETIME_FORMAT" }}{% endif %} {{ todo.user.get_username }}{% if todo.user.get_full_name %} ({{ todo.user.get_full_name }}){% endif %} {{ todo.node.name }} {% if todo.is_read %} {% trans 'already read' %} {% else %} {% trans 'unread' %} {% endif %}
{% endif %}
{% endblock %}