{% extends 'user/layout.html' %} {% load i18n %} {% block header %}

{% if is_self %} {% trans "Your Lists" %} {% else %} {% blocktrans with username=user.display_name %}Lists: {{ username }}{% endblocktrans %} {% endif %}

{% if is_self %}
{% trans "Create list" as button_text %} {% include 'snippets/toggle/open_button.html' with controls_text="create_list" icon_with_text="plus" text=button_text %}
{% endif %}
{% endblock %} {% block panel %}
{% include 'lists/list_items.html' with lists=lists %}
{% include 'snippets/pagination.html' with page=lists path=path %}
{% endblock %}