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

_annotationList.twig « templates « Annotations « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c5a0db951c0c7bccc6401ef870997e161fdc2d74 (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
28
29
30
31
32
33
<div class="annotations">

    {% if annotations is empty %}
        <div class="empty-annotation-list">{{ 'Annotations_NoAnnotations'|translate }}</div>
    {% endif %}

    <table>
        {% for annotation in annotations %}
            {% include "@Annotations/_annotation.twig" %}
        {% endfor %}
        <tr class="new-annotation-row" style="display:none;" data-date="{{ selectedDate }}">
            <td class="annotation-meta">
                <div class="annotation-star">&nbsp;</div>
                <div class="annotation-period-edit">
                    <a href="#">{{ selectedDate }}</a>

                    <div class="datepicker" style="display:none;"/>
                </div>
            </td>
            <td class="annotation-value">
                <div class="input-field">
                    <input type="text" value=""
                           class="new-annotation-edit browser-default"
                           placeholder="{{ 'Annotations_EnterAnnotationText'|translate }}"/>
                </div><br/>
                <input type="button" class="btn new-annotation-save" value="{{ 'General_Save'|translate }}"/>
                <input type="button" class="btn new-annotation-cancel" value="{{ 'General_Cancel'|translate }}"/>
            </td>
            <td class="annotation-user-cell"><span class="annotation-user">{{ userLogin }}</span></td>
        </tr>
    </table>

</div>