{% set notifications = get_notifications(request.user.id) %}
{% if notifications %}
{% trans %}New comments{% endtrans %}
{% for notification in notifications %}
{% set comment = notification.obj() %}
{% set comment_author = comment.get_actor %}
{% set media = comment.get_reply_to() %}