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

getDefaultIndexView.twig « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a09030ff3daba69dd98f53bddf87c649387ef8a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "dashboard.twig" %}
{% import 'ajaxMacros.twig' as ajax %}

{% block topcontrols %}
    {% include "@CoreHome/_siteSelectHeader.twig" %}
    {% include "@CoreHome/_periodSelect.twig" %}
    {{ postEvent("Template.nextToCalendar") }}
    {% render dashboardSettingsControl %}
    {% include "@CoreHome/_headerMessage.twig" %}
{% endblock %}

{% block content %}
    {{ ajax.requestErrorDiv(emailSuperUser|default('')) }}
    {{ ajax.loadingDiv() }}

    <div id="content" class="home">
        {% if content %}{{ content }}{% endif %}
    </div>
{% endblock %}