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

Activity List

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