{% extends "base.html" %} {% block content %}

{{ item.name }}

Edit
{{ item.list_type }} {% if item.description %}

{{ item.description }}

{% endif %} {% if item.tags %}
{% for tag in item.tags %} {{ tag }} {% endfor %}
{% endif %}
{% if list_items %}
{% for li in list_items %}
{% with reorder_url="/lists/" ~ item.id ~ "/items/reorder", item_id=li.id %} {% include 'partials/reorder_arrows.html' %} {% endwith %} {% if item.list_type == 'checklist' %}
{% endif %} {{ li.content }}
{% for child in child_map.get(li.id|string, []) %}
{% with reorder_url="/lists/" ~ item.id ~ "/items/reorder", item_id=child.id, extra_fields={"parent_id": li.id|string} %} {% include 'partials/reorder_arrows.html' %} {% endwith %} {% if item.list_type == 'checklist' %}
{% endif %} {{ child.content }}
{% endfor %} {% endfor %}
{% else %}
No items yet. Add one above.
{% endif %}

Contacts{{ contacts|length }}

{% for c in contacts %}
{{ c.first_name }} {{ c.last_name or '' }} {% if c.role %}{{ c.role }}{% endif %}
{% else %}
No contacts linked
{% endfor %}
{% endblock %}