{% extends "layout/default.html" %} {% load i18n %} {% block title %}{% translate "Invoice Activity " %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Invoices" %} {% endblock %} {% block breadcumbfirst %} Manage Invoices {% endblock %} {% block breadcumbaddmore %} {% endblock %} {% block content %}

Activity List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if t1 %}
{% for invoice in t1 %} {% if invoice.log_activity != null and invoice.log_activity != '' %} {% endif %} {% endfor %}
Sr.No Activity ACTION BY Timestamp
{{invoice.row_number}} {% if invoice.action == 'Created' %} {% if invoice.model_name == 'InvoiceItem' %} Added {% autoescape off %} {{invoice.log_activity}}{% endautoescape %} {% else %} {{invoice.action}} {% endif %} {% elif invoice.action != 'Created' %} {% autoescape off %}{{invoice.action}} {{invoice.log_activity}}{% endautoescape %} {% endif %} {{invoice.activity_by}} {{invoice.timestamp|date:"M. d, Y, g:i A"}}
{% else %} No Record Found. {% endif %}
{% block script %} {% endblock script %} {% endblock content %}