{% extends "dashboard/base.html" %} {% load static i18n %} {% block content %}

Notifications

{% for notification in notifications %}
{% if notification.comment %}
{% if notification.comment.user.profile_picture %} {{ notification.comment.user.username }} {% else %} {% endif %}

{{ notification.comment.user.username }} commented on your doubt:

{{ notification.comment.content|truncatechars:100 }}

{{ notification.created_at|timesince }} ago

View Doubt
{% endif %}
{% empty %}
No new notifications
{% endfor %}
{% endblock %}