{% with comments=listing %}
{% include "comments.html" %}
{% endwith %}
{% else %}
{% if '/saved/' in request.path %}
{% set text = "You haven't saved any comments yet!" %}
{% elif v and v.id == u.id %}
{% set text = "You haven't made any comments yet!" %}
{% else %}
{% set text = '@' ~ u.username ~ " hasn't made any comments yet!" %}
{% endif %}
{{macros.ghost_box(text, '', 1)}}