diff --git a/src/Pluf/templates/pluf/ab/base.html b/src/Pluf/templates/pluf/ab/base.html index 72f4a04..7a9f86b 100644 --- a/src/Pluf/templates/pluf/ab/base.html +++ b/src/Pluf/templates/pluf/ab/base.html @@ -88,6 +88,17 @@ p.note { float:left; height:10px; } + +.arrow { + font-size: 0px; line-height: 0%; width: 0px; + border-top: 20px solid #3465a4; + border-left: 10px solid #fff; + border-right: 10px solid #fff; + float: right; + padding-right: 2em; + margin-right: 25px; +} + {/literal} diff --git a/src/Pluf/templates/pluf/ab/funnel.html b/src/Pluf/templates/pluf/ab/funnel.html index fa8c812..5ba8eac 100644 --- a/src/Pluf/templates/pluf/ab/funnel.html +++ b/src/Pluf/templates/pluf/ab/funnel.html @@ -1,11 +1,14 @@ {extends "pluf/ab/base.html"} {block body} +

» All funnels

+

Funnel {$funnel}

{assign $i=1} {foreach $stats as $step}{if $step} {if $i>1}

{$step['total']} ({$step['conv']})

+
{/if}

Step {$i}: {$step['name']}

@@ -16,7 +19,7 @@   {/if}
{assign $t = $step['total']} -{blocktrans $t}{$t} unique visitor.{plural}{$t} uniques visitors.{/blocktrans} +{blocktrans $t}{$t} unique visitor.{plural}{$t} unique visitors.{/blocktrans}

{assign $i += 1} @@ -29,6 +32,7 @@ This is a completion rate of {$stats[$i]['conv1']}.

+

Note that if a user skip a given step, this can make the results a bit off.