{% extends "userpage/userpage.html" %} {% block content %}
{% if "/saved/" not in request.path and "/subscribed/" not in request.path %}
{% endif %}
{% 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 %}
{% if u.song %} {% if v and v.id == u.id %}
{{v.username}}
{% else %}
{{u.username}}
{% endif %} {% endif %} {% if v %}
{% if v.patron or u.patron %}0{% else %}0.03{% endif %}
{{u.username}}
{% endif %} {% endblock %}