{% extends "layout/default.html" %} {% load i18n %} {% block title %}{% translate "Lead Notes History " %}{% endblock %} {% block breadcumbheading %} {% translate "Manage Leads " %} {% endblock %} {% block breadcumbfirst %} Manage Lead List History {% endblock %} {% block breadcumbaddmore %}
| Sr.No | Note | Reminder Date | Show To | Is Read? | Updated By | Created By |
|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ note.note|slice:":100" }}{% if note.note|length > 100 %}...{% endif %} {% if note.note|length > 100 %} View More {% endif %} |
{{ note.reminder_date|date:'d-m-Y' }} {{ note.meeting_time|time:"g:i A" }} |
{% 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 %} | {% if note.updated_by.userinfo.first_name %}{{ note.updated_by.userinfo.first_name }} {{ note.updated_by.userinfo.last_name }}{%else%}-{%endif%} {% if note.updated_by.userinfo.first_name %} {{note.updated_at|date:'d-m-Y H:m:s'}} {%endif%} |
{% 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'}} |