{% extends 'layout.html' %} {% load utilities %} {% load i18n %} {% block title %}{% trans "Lists" %}{% endblock %} {% block content %}

{% trans "Lists" %} {% if request.user.is_authenticated %} {% trans "Your Lists" %} {% endif %}

{% if request.user.is_authenticated %}
{% include 'lists/create_form.html' with controls_text="create_list" %}
{% endif %} {% if request.user.is_authenticated %} {% endif %} {% if lists %}
{% include 'lists/list_items.html' with lists=lists %}
{% include 'snippets/pagination.html' with page=lists path=path %}
{% endif %} {% endblock %}