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

annotationManager.twig « templates « Annotations « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cd93e2b10e1a13ef2c38b545559ed067445df89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<div class="annotation-manager"
     {% if startDate != endDate %}data-date="{{ startDate }},{{ endDate }}" data-period="range"
     {% else %}data-date="{{ startDate }}" data-period="{{ period }}"
     {% endif %}>

    <div class="annotations-header">
        <span>{{ 'Annotations_Annotations'|translate }}</span>
    </div>

    <div class="annotation-list-range">{{ startDatePretty }}{% if startDate != endDate %} &mdash; {{ endDatePretty }}{% endif %}</div>

    <div class="annotation-list">
        {% include "@Annotations/annotations.twig" %}

        <span class="loadingPiwik" style="display:none"><img src="plugins/Zeitgeist/images/loading-blue.gif"/>{{ 'General_Loading_js'|translate }}</span>

    </div>

    <div class="annotation-controls">
        {% if canUserAddNotes %}
            <a href="#" class="add-annotation" title="{{ 'Annotations_CreateNewAnnotation'|translate }}">{{ 'Annotations_CreateNewAnnotation'|translate }}</a>
        {% elseif userLogin == 'anonymous' %}
            <a href="index.php?module=Login">{{ 'Annotations_LoginToAnnotate'|translate }}</a>
        {% endif %}
    </div>

</div>