50 lines
1.8 KiB
Twig
50 lines
1.8 KiB
Twig
<link rel="stylesheet" type="text/css" href="plugins/Goals/stylesheets/goals.css"/>
|
|
|
|
{% include "@Goals/_titleAndEvolutionGraph.twig" %}
|
|
{% set sum_nb_conversions=nb_conversions %}
|
|
|
|
{% for goal in goalMetrics %}
|
|
{% set nb_conversions=goal.nb_conversions %}
|
|
{% set nb_visits_converted=goal.nb_visits_converted %}
|
|
{% set conversion_rate=goal.conversion_rate %}
|
|
{% set name=goal.name %}
|
|
<div class="goalEntry">
|
|
<h2>
|
|
<a href="javascript:broadcast.propagateAjax('module=Goals&action=goalReport&idGoal={{ goal.id }}')">
|
|
{{ 'Goals_GoalX'|translate("'"~name~"'")|raw }}
|
|
</a>
|
|
</h2>
|
|
|
|
<div id='leftcolumn'>
|
|
<div class="sparkline">{{ sparkline(goal.urlSparklineConversions) }}
|
|
{{ 'Goals_Conversions'|translate("<strong>"~nb_conversions~"</strong>")|raw }}
|
|
{% if goal.goalAllowMultipleConversionsPerVisit %}
|
|
({{ 'General_NVisits'|translate("<strong>"~nb_visits_converted~"</strong>") | raw }})
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
<div id='rightcolumn'>
|
|
<div class="sparkline">{{ sparkline(goal.urlSparklineConversionRate) }}
|
|
{{ 'Goals_ConversionRate'|translate("<strong>"~conversion_rate~"</strong>")|raw }}
|
|
</div>
|
|
</div>
|
|
<br class="clear"/>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
{% if displayFullReport %}
|
|
{% if sum_nb_conversions != 0 %}
|
|
<h2 id='titleGoalsByDimension'>
|
|
{% if idGoal is defined %}
|
|
{{ 'Goals_GoalConversionsBy'|translate(goalName)|raw }}
|
|
{% else %}
|
|
{{ 'Goals_ConversionsOverviewBy'|translate }}
|
|
{% endif %}
|
|
</h2>
|
|
{{ goalReportsByDimension|raw }}
|
|
{% endif %}
|
|
|
|
{% if userCanEditGoals %}
|
|
{% include "@Goals/_addEditGoal.twig" %}
|
|
{% endif %}
|
|
{% endif %}
|