Welcome to mirror list, hosted at ThFree Co, Russian Federation.

single_goal.tpl « templates « Goals « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 289be7b41755b1bfcb1abe4b19e79333f4736cc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{include file="Goals/templates/title_and_evolution_graph.tpl"}

<div style="clear:both"></div>
{if $nb_conversions > 0}
	<h2>Conversions Overview</h2>
	<ul class="ulGoalTopElements">
	<li>Your best converting countries are: {include file='Goals/templates/list_top_segment.tpl' topSegment=$topSegments.country}</li>
	{if count($topSegments.keyword)>0}<li>Your top converting keywords are: {include file='Goals/templates/list_top_segment.tpl' topSegment=$topSegments.keyword}</li>{/if}
	{if count($topSegments.website)>0}<li>Your best converting websites referers are: {include file='Goals/templates/list_top_segment.tpl' topSegment=$topSegments.website}</li>{/if}
	<li>Returning visitors conversion rate is <b>{$conversion_rate_returning}%</b>, New Visitors conversion rate is <b>{$conversion_rate_new}%</b></li>
	</ul>
{/if}
<hr>
{$tableByConversion}

<hr>
{literal}
<style>
ul.ulGoalTopElements {
	list-style-type:circle;
	margin-left:30px;
}
.ulGoalTopElements a {
	text-decoration:none;
	color:#0033CC;
	border-bottom:1px dotted #0033CC;
	line-height:2em;
}
.goalTopElement { 
	border-bottom:1px dotted; 
} 
</style>
<script>
$(document).ready( function() {
	$('.goalTopElement')
		.tooltip()
		;
	});
</script>
{/literal}