{% extends "base.html" %} {% block title %}User Flow Analysis{% endblock %} {% load static %} {% block content %}
Navigation patterns for logged-in users. Use this to inform Command Palette suggestions.
Cached result from {{ flow_cached_at }}. Click Compute all in background to refresh.
{% else %}Live result. Sessions split on 30-minute idle gaps. Consecutive views of the same section are collapsed to one step.
{% endif %} {% if frequency_table or transition_table %}| Section | Views | Unique users | Avg time (s) |
|---|---|---|---|
| {{ row.section }} | {{ row.views }} | {{ row.unique_users }} | {{ row.avg_time }} |
| No page views found. | |||
For each section, where do users go next in the same session?
| From | Top next steps (% of transitions) |
|---|---|
| {{ row.from }} {{ row.total_transitions }} transitions |
{% for next in row.nexts %} {{ next.section }} {{ next.pct }}% {% endfor %} |
| No session transitions found. | |