{% extends "base.html" %} {% block content %}
{% if items %}
{% for item in items %}
{% with reorder_url="/lists/reorder", item_id=item.id %} {% include 'partials/reorder_arrows.html' %} {% endwith %} {{ item.name }} {{ item.completed_count }}/{{ item.item_count }} items {% if item.item_count > 0 %}
{% endif %} {{ item.list_type }} {% if item.domain_name %} {{ item.domain_name }} {% endif %} {% if item.project_name %} {{ item.project_name }} {% endif %}
Edit
{% endfor %}
{% else %}
No lists yet
Create First List
{% endif %} {% endblock %}