{% 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 | Lead Name | Note | Reminder Date/Time | Created By | {% if 1 in user_roles %}Show To | Is Read? | {% endif %}Action | |
|---|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{note.lead.first_name}} {{note.lead.first_name}} {% if note.lead.company_name %} ({{note.lead.company_name}}) {% endif %} | {{note.note}} |
{{note.reminder_date|date:'d-m-Y'}} {{ note.meeting_time|time:"g:i A" }} |
{% 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 %} | |