{% extends 'paxalia/base.html' %} {% load static i18n %} {% block title %}{% trans "Goals" %} – Paxalia Analytics{% endblock %} {% block page_title %}{% trans "Goals" %}{% endblock %} {% block page_subtitle %}{% trans "Conversion rate for each goal in the selected date range" %}{% endblock %} {% block extra_css %} {% endblock %} {% block filter_bar %} {% include 'paxalia/includes/filter_bar.html' %} {% endblock %} {% block dashboard_content %}

{% trans "Add a Goal" %}

{% csrf_token %}

{% trans "Page goal: enter the path exactly (e.g. /thank-you/). Event goal: enter category:action (e.g. signup:completed) — matches events fired via the public event API or the embedded tracker." %}

{% trans "Conversion Rate" %}

{% blocktrans %}Based on {{ total_sessions }} sessions in this date range.{% endblocktrans %}

{% if goal_rows %} {% for row in goal_rows %} {% endfor %}
{% trans "Goal" %} {% trans "Type" %} {% trans "Matches" %} {% trans "Completed sessions" %} {% trans "Conversion rate" %} {% trans "Actions" %}
{{ row.goal.name }} {{ row.goal.get_goal_type_display }} {{ row.goal.match_value }} {{ row.completed }} {{ row.rate }}%
{% csrf_token %}
{% else %}
{% trans "No goals defined yet." %}
{% endif %}
{% endblock %} {% block page_scripts %} {% endblock %}