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

{{ item.title }}

Edit
{% if item.completed %}completed{% endif %} {% if domain %}{{ domain.name }}{% endif %} {% if project %}{{ project.name }}{% endif %}
Convert to:
Notes
Back
Checklist {{ list_items|length }} item{{ 's' if list_items|length != 1 }}
{% for li in list_items %}
{{ li.content }}
{% else %}
No items yet
{% endfor %}
{% endblock %}