{% extends "userpage/userpage.html" %} {% block userpage_content %}
{% if listing %}
{% with comments=listing %} {% include "comments.html" %} {% endwith %}
{% else %}
{% if '/saved/' in request.path %}
You haven't saved any comments yet
{% elif v and v.id == u.id %}
You haven't made any comments yet

Your commenting history will show here.

{% else %}
@{{u.username}} hasn't made any comments yet

Their commenting history will show here.

{% endif %}
{% endif %}
{% endblock %}