PDF rausgenommen
This commit is contained in:
@ -0,0 +1,62 @@
|
||||
{% extends "dashboard.twig" %}
|
||||
|
||||
{% block notification %}{% endblock %}
|
||||
|
||||
{% block topcontrols %}
|
||||
{% include "@CoreHome/_siteSelectHeader.twig" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<script type="text/javascript" charset="utf-8">
|
||||
$(document).ready(function () {
|
||||
$('<div />').insertAfter('.site-without-data').liveWidget({
|
||||
interval: 1000,
|
||||
onUpdate: function () {
|
||||
// reload page as soon as a visit was detected
|
||||
broadcast.propagateNewPage('date=today');
|
||||
},
|
||||
dataUrlParams: {
|
||||
module: 'Live',
|
||||
action: 'getLastVisitsStart'
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<div class="site-without-data">
|
||||
|
||||
<h2>{{ 'SitesManager_SiteWithoutDataTitle'|translate }}</h2>
|
||||
|
||||
<p>
|
||||
{{ 'SitesManager_SiteWithoutDataDescription'|translate }}
|
||||
{{ 'SitesManager_SiteWithoutDataSetupTracking'|translate('<a href="' ~ linkTo({
|
||||
'module': 'CoreAdminHome',
|
||||
'action': 'trackingCodeGenerator',
|
||||
}) ~ '">', "</a>")|raw }}
|
||||
</p>
|
||||
|
||||
<p>
|
||||
{{ 'SitesManager_SiteWithoutDataMessageDisappears'|translate }}
|
||||
{{ 'SitesManager_SiteWithoutDataSetupGoals'|translate('<a href="' ~ linkTo({
|
||||
'module': 'Goals',
|
||||
'action': 'manage',
|
||||
}) ~ '">', "</a>",
|
||||
'<a href="https://matomo.org/features/" rel="noreferrer noopener" target="_blank">', "</a>",
|
||||
'<a href="https://matomo.org/docs/" rel="noreferrer noopener" target="_blank">', "</a>",
|
||||
'<a href="https://matomo.org/faq/" rel="noreferrer noopener" target="_blank">', "</a>")|raw }}
|
||||
|
||||
<br />
|
||||
<br />
|
||||
<a href="{{ linkTo({module: 'SitesManager', action: 'ignoreNoDataMessage'}) }}"
|
||||
class="btn ignoreSitesWithoutData">{{ 'SitesManager_SiteWithoutDataIgnoreMessage'|translate }}</a>
|
||||
</p>
|
||||
|
||||
{{ postEvent('Template.siteWithoutData.afterIntro') }}
|
||||
|
||||
{{ trackingHelp|raw }}
|
||||
|
||||
{{ postEvent('Template.siteWithoutData.afterTrackingHelp') }}
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
Reference in New Issue
Block a user