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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Goals/templates/getGoalReportView.twig')
-rw-r--r--plugins/Goals/templates/getGoalReportView.twig66
1 files changed, 0 insertions, 66 deletions
diff --git a/plugins/Goals/templates/getGoalReportView.twig b/plugins/Goals/templates/getGoalReportView.twig
deleted file mode 100644
index 2cb3b7f4d0..0000000000
--- a/plugins/Goals/templates/getGoalReportView.twig
+++ /dev/null
@@ -1,66 +0,0 @@
-<link rel="stylesheet" type="text/css" href="plugins/Goals/stylesheets/goals.css"/>
-{% include "@Goals/_titleAndEvolutionGraph.twig" | raw %}
-
-<div class="clear"></div>
-{% if nb_conversions > 0 %}
- <h2>{{ 'Goals_ConversionsOverview'|translate }}</h2>
- <ul class="ulGoalTopElements">
- {% if ecommerce is not defined %}
- {% if topDimensions.country is defined %}
- <li>{{ 'Goals_BestCountries'|translate }} {% include '@Goals/_listTopDimension.twig' with {'topDimension':topDimensions.country} %}</li>
- {% endif %}
- {% if topDimensions.keyword is defined and topDimensions.keyword|length > 0 %}
- <li>{{ 'Goals_BestKeywords'|translate }} {% include '@Goals/_listTopDimension.twig' with {'topDimension':topDimensions.keyword} %}</li>
- {% endif %}
- {% if topDimensions.website is defined and topDimensions.website|length > 0 %}
- <li>{{ 'Goals_BestReferrers'|translate }} {% include '@Goals/_listTopDimension.twig' with {'topDimension':topDimensions.website} %}</li>
- {% endif %}
- <li>
- {{ 'Goals_ReturningVisitorsConversionRateIs'|translate("<strong>"~conversion_rate_returning~"</strong>")|raw }}
- , {{ 'Goals_NewVisitorsConversionRateIs'|translate("<strong>"~conversion_rate_new~"</strong>")|raw }}
- </li>
- {% else %}
- <li>
- {{ 'General_ColumnRevenue'|translate }}: {{ revenue|money(idSite)|raw -}}
- {% if revenue_subtotal is not empty %},
- {{ 'General_Subtotal'|translate }}: {{ revenue_subtotal|money(idSite)|raw -}}
- {% endif %}
- {%- if revenue_tax is not empty -%},
- {{ 'General_Tax'|translate }}: {{ revenue_tax|money(idSite)|raw -}}
- {% endif %}
- {%- if revenue_shipping is not empty -%},
- {{ 'General_Shipping'|translate }}: {{ revenue_shipping|money(idSite)|raw -}}
- {% endif %}
- {%- if revenue_discount is not empty -%},
- {{ 'General_Discount'|translate }}: {{ revenue_discount|money(idSite)|raw -}}
- {% endif %}
- </li>
- {% endif %}
- </ul>
-{% endif %}
-
-<script type="text/javascript">
- $(document).ready(function () {
- $('.goalTopElement').tooltip({
- track: true,
- content: function () {
- return $(this).attr("title");
- },
- show: false,
- hide: false
- });
- });
-</script>
-
-{% if displayFullReport %}
- {% if nb_conversions > 0 or cart_nb_conversions is defined %}
- <h2 id='titleGoalsByDimension'>
- {% if idGoal is defined %}
- {{ 'Goals_GoalConversionsBy'|translate(goalName) }}
- {% else %}
- {{ 'Goals_ConversionsOverviewBy'|translate }}
- {% endif %}
- </h2>
- {{ goalReportsByDimension|raw }}
- {% endif %}
-{% endif %}