{% extends "userpage.html" %} {% block content %}
{% if not "saved" in request.full_path %}
{% include "/dropdowns/SubmissionSorts.html" %}
{% endif %} {% if listing %}
{% with comments=listing %} {% include "comments.html" %} {% endwith %}
{% else %}
{% if '/saved/' in request.path %}

You have no saved comments

Go save some comments!

{% elif v and v.id == u.id %}

You have no comments

Go write some comments!

{% else %}

You have no comments

Their comments will show up here.

{% endif %}
{% endif %} {% if listing %}
{% if page>1 %} Prev {% else %} Prev {% endif %} {% if next_exists %} Next {% else %} Next {% endif %}
{% endif %}
{% endblock %}