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