{% extends "userpage.html" %} {% block content %}
{% if not "saved" in request.full_path %}
{% endif %}
{% if listing %}
{% with comments=listing %} {% include "comments.html" %} {% endwith %}
{% else %}
{% if 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 %}