{% extends "layout/default.html" %} {% load i18n %} {% block title %}{% translate "Lead Notes " %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Notifications " %} {% endblock %} {% block breadcumbfirst %} Manage Notification List {% endblock %} {% block breadcumbaddmore %}
| Sr.No | Customer Name | Note | Created By | {% if 1 in user_roles %}Show To | Is Read? | {% endif %}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 1 in user_roles %}
{% 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 %} | {% endif %}Select {% comment %} {% endcomment %} | |