{# One project. The plan, units and stages arrive in later phases; this is the shell they hang on. #} {% extends "base.html" %} {% from "mirrorwall/components.html" import kv_list, badge, empty_state %} {% block content %}

{{ project.title }}

{{ kv_list([ {"label": "Status", "value": project.status}, {"label": "Content type", "value": project.content_type ~ " " ~ project.content_type_version}, {"label": "Workflow", "value": project.workflow_id ~ " " ~ project.workflow_version}, {"label": "Slug", "value": project.slug}, {"label": "Created", "value": project.created_at | timestamp}, {"label": "Updated", "value": project.updated_at | timestamp}, ]) }}

Brief

{% if project.brief_text %}
{{ project.brief_text }}
{% else %}{{ empty_state("No brief yet. A project needs one before requirements can be compiled.") }}{% endif %}

Plan

{{ empty_state("No plan yet.") }}

Back to projects

{% endblock %}