{% extends 'user/user_layout.html' %} {% block header %}

{% if is_self %}Your {% else %} {% include 'snippets/username.html' with user=user %}'s {% endif %} Lists

{% if is_self %}
{% include 'snippets/toggle/open_button.html' with controls_text="create-list" icon="plus" text="Create new list" %}
{% endif %}
{% endblock %} {% block panel %}
{% include 'lists/list_items.html' with lists=lists %}
{% include 'snippets/pagination.html' with page=lists path=path %}
{% endblock %}