{% extends "userpage.html" %} {% block content %}
{% if not "saved" in request.full_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 %}