{% extends "base.html" %} {% block title %}dashboard — dossier{% endblock %} {% block content %}

dashboard

{{ total_count }} open across {{ project_rows | length }} projects
{% if project_rows %}
{% for p in project_rows %} {% endfor %}
project owner open items
{{ p.name }} {{ owner_display(p.catalog_entry) }} {{ p.open_count }}
{% else %}
no projects
configure DOSSIER_PROJECTS to get started
{% endif %}
{% if dashboard_items %} {% if total_count > max_items %}
showing first {{ max_items }} of {{ total_count }} items
{% endif %}
{% for item in dashboard_items %} {% endfor %}
key title project state assignee updated
{{ item.key }} {{ item.title }} {{ item.project_slug }} {{ item.state }} {{ item.assignee or '—' }} {{ item.updated }}
{% else %}
no open items across the estate
create or reopen a work-item to see it here
{% endif %} {% endblock %}