{% extends 'paxalia/base.html' %} {% load static i18n %} {% block title %}{% trans "Funnels" %} – Paxalia Analytics{% endblock %} {% block page_title %}{% trans "Funnels" %}{% endblock %} {% block page_subtitle %}{% trans "Step-by-step drop-off for the selected date range" %}{% endblock %} {% block extra_css %} {% endblock %} {% block filter_bar %} {% include 'paxalia/includes/filter_bar.html' %} {% endblock %} {% block dashboard_content %}

{% trans "Create a Funnel" %}

{% trans "Up to 5 steps. A session counts toward a step if it matches that step and every step before it, anywhere in the date range — this is a simpler approximation than a strictly-ordered funnel, so treat drop-off as directional rather than exact." %}

{% csrf_token %} {% for i in "12345" %}
{% trans "Step" %} {{ forloop.counter }}
{% endfor %}
{% for report in funnel_reports %}

{{ report.funnel.name }}
{% csrf_token %}

{% for row in report.dropoff %} {% endfor %}
{% trans "Step" %} {% trans "Matches" %} {% trans "Sessions" %} {% trans "% of step 1" %} {% trans "% of previous step" %}
{{ row.step.order }}. {{ row.step.name }} {{ row.step.match_value }} {{ row.sessions }} {{ row.pct_of_step_1 }}% {{ row.pct_of_previous }}%
{% empty %}
{% trans "No funnels defined yet." %}
{% endfor %}
{% endblock %} {% block page_scripts %} {% endblock %}