{% extends "base.html" %} {% block title %}{{ project.name }} — {{ workspace.slug }}{% endblock %} {% block content %}

{{ project.name }}

Project {{ project.slug }} in workspace {{ workspace.slug }}

Work Items ({{ breadcrumbs|length }})

{% if breadcrumbs %} {% for wi in breadcrumbs %} {% endfor %}
IDTitleKindStatusUpdated
{{ wi.identifier }} {{ wi.title }} {{ wi.kind }} {% if wi.status in ['closed', 'deferred'] %} {{ wi.status }} {% elif wi.status in ['open'] %} {{ wi.status }} {% else %} {{ wi.status }} {% endif %} {{ wi.updated_at.strftime('%Y-%m-%d %H:%M') if wi.updated_at else '' }}
{% else %}

No work items in this project.

{% endif %}

Memories ({{ memories|length }})

{% if memories %} {% for m in memories %} {% endfor %}
NameTypePreviewUpdated
{{ m.name }} {{ m.memory_type }} {{ (m.body_preview or '')[:60] }} {{ m.updated_at.strftime('%Y-%m-%d %H:%M') if m.updated_at else '' }}
{% else %}

No memories in this project.

{% endif %} {% endblock %}