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

annotations.tpl « templates « Annotations « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 26c1f708f1fc411214d2ac7e214fb4c696cd1d03 (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
<div class="annotations">

    {if empty($annotations)}
        <div class="empty-annotation-list">{'Annotations_NoAnnotations'|translate}</div>
    {/if}

    <table>
        {foreach from=$annotations item=annotation}
            {include file="Annotations/templates/annotation.tpl"}
        {/foreach}
        <tr class="new-annotation-row" style="display:none" data-date="{$startDate}">
            <td class="annotation-meta">
                <div class="annotation-star">&nbsp;</div>
                <div class="annotation-period-edit">
                    <a href="#">{$startDate}</a>

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

</div>