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

Note List

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% if notes %}
{% if 1 in user_roles %} {% endif %} {% for note in notes %} {% if 1 in user_roles %} {% endif %} {% endfor %}
Sr.No Customer Name Note Created ByShow To Is Read?Action
{{ forloop.counter }} {% if note.customer.get_is_individual_display == 'Individual' %}{{ note.customer.first_name }} {{ note.customer.last_name }} {% else %} {{ note.customer.company_name }} {% endif %} {{note.note}} {% if note.created_by.userinfo.first_name %}{{ note.created_by.userinfo.first_name }} {{ note.created_by.userinfo.last_name }}{%else%}-{%endif%}
{{note.created_at|date:'d-m-Y H:m:s'}}
{% if note.assigned_to.userinfo.first_name %}{{ note.assigned_to.userinfo.first_name }} {{ note.assigned_to.userinfo.last_name }}{%else%}-{%endif%} {% if note.is_read == 1 %} Read {% else %} Not Read Yet {% endif %} Select {% comment %} {% endcomment %}
{% else %} No Record Found. {% endif %}
{% block script %} {% endblock script %} {% endblock content %}