| Server IP : 213.186.33.4 / Your IP : 216.73.216.193 Web Server : Apache System : Linux webm006.cluster103.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : awebpaca ( 35430) PHP Version : 8.5.0 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/awebpaca/piwik/plugins/CoreVisualizations/templates/ |
Upload File : |
{% import '@CoreVisualizations/macros.twig' as macros %}
{% if not isWidget %}
<div class="card"><div class="card-content">
{% endif %}
{% if title is not empty %}<h2 class="card-title"
{% if titleAttributes is not empty %}{% for attribute, value in titleAttributes %}{{ attribute }}="{{ value }}"{% endfor %}{% endif %}
>{{ title }}</h2>{% endif %}
{% if not isWidget %}
<div class="row">
<div class="col m6">
{% endif %}
{% if sparklines|length == 1 %}
{% for key, sparkline in sparklines|first %}
{% if loop.index0 is even %}
{{ macros.singleSparkline(sparkline, allMetricsDocumentation, areSparklinesLinkable) }}
{% endif %}
{% endfor %}
{% else %}
{% for group in sparklines %}
{% if loop.index0 is even %}
<div>
{% for key, sparkline in group %}
{{ macros.singleSparkline(sparkline, allMetricsDocumentation, areSparklinesLinkable) }}
{% endfor %}
</div>
{% endif %}
{% endfor %}
{% endif %}
{% if not isWidget %}
<br style="clear:left"/>
</div>
<div class="col m6">
{% endif %}
{% if sparklines|length == 1 %}
{% for key, sparkline in sparklines %}
{% if loop.index0 is odd %}
{{ macros.singleSparkline(sparkline, allMetricsDocumentation, areSparklinesLinkable) }}
{% endif %}
{% endfor %}
{% else %}
{% for group in sparklines %}
{% if loop.index0 is odd %}
<div>
{% for key, sparkline in group %}
{{ macros.singleSparkline(sparkline, allMetricsDocumentation, areSparklinesLinkable) }}
{% endfor %}
</div>
{% endif %}
{% endfor %}
{% endif %}
<br style="clear:left"/>
{% if not isWidget %}
</div>
</div>
{% endif %}
{% if areSparklinesLinkable %}
{% include "_sparklineFooter.twig" %}
{% endif %}
{% if footerMessage is not empty %}
<div class='datatableFooterMessage'>{{ footerMessage | raw }}</div>
{% endif %}
{% if not isWidget %}
</div></div>
{% endif %}