{% if all_notify_obj %}
{% for notify in all_notify_obj %}
{% endfor %}
{% else %}
{{notify.message}}
{{ notify.start_date|timesince }} ago
No notification found
{% endif %}
{% if read_notify_obj %}
{% for notify in read_notify_obj %}
{% endfor %}
{% else %}
{{notify.message}}
{{ notify.start_date|timesince }} ago
No notification found
{% endif %}
{% if unread_notify_obj %}
{% for notify in unread_notify_obj %}
{% endfor %}
{% else %}
{{notify.message}}
{{ notify.start_date|timesince }} ago
No notification found
{% endif %}