{# The export dialog. Format, scope and what each one includes, stated plainly — a person choosing here is deciding what leaves this application and in what shape. #} {% extends "base.html" %} {% from "mirrorwall/components.html" import badge, empty_state %} {% block content %}
Written to {{ written }}.
{{ committed_count }} of {{ unit_count }} unit(s) are committed. Only committed units are exported.
{% if uncommitted %}{{ badge("not included", tone="warning") }} {% for key in uncommitted %}{{ key }}{% if not loop.last %}, {% endif %}{% endfor %} — not yet committed. Finish or resume them first if they belong in the document.
{% endif %} {% if committed_count == 0 %} {{ empty_state("Nothing is committed yet, so an export would be empty.") }} {% endif %}