{% extends "base.html" %} {% block title %}{{ case.case_id }} — Journey — psyc{% endblock %} {% block content %}
← {{ case.case_id }}

Case Journey

{{ case.summary }}

    {% for b in beats %}
  1. {{ b.index }} · {{ b.line }}

    {{ b.title }}{% if not b.occurred %} pending{% endif %}

    {{ b.caption }}

    {% if b.facts %}
      {% for f in b.facts %}
    • {{ f }}
    • {% endfor %}
    {% endif %}
  2. {% endfor %}
{% endblock %}