{% extends 'layout/default.html' %} {% load i18n %} {% load custom_tags %} {% block title %}{% translate "List Order Item History" %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Order Histories" %} {% endblock %} {% block breadcumbfirst %} Manage Order Histories {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Order History List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% for history in order_history %} {% endfor %}
S.No User Action Activity Timestamp
{{forloop.counter}} {{history.user.userinfo.first_name}} {{history.user.userinfo.last_name}} {{history.action}} {% if history.new_data %} {% with fields_data=history.new_data.0.fields %} {{ fields_data.status|get_status_label }} {% endwith %} {% else %} N/A {% endif %} {{history.timestamp}}
{% endblock content %}