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

_annotation.twig « templates « Annotations « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c90e99a428e0e11ab8eec1ff06f472951dfd58fe (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<tr class="annotation" data-id="{{ annotation.idNote }}" data-date="{{ annotation.date }}">
    <td class="annotation-meta">
        <div class="annotation-star{% if annotation.canEditOrDelete %} annotation-star-changeable{% endif %}" data-starred="{{ annotation.starred }}"
            {% if annotation.canEditOrDelete %}title="{{ 'Annotations_ClickToStarOrUnstar'|translate }}"{% endif %}>
            {% if annotation.starred %}
                <img src="plugins/Morpheus/images/star.png"/>
            {% else %}
                <img src="plugins/Morpheus/images/star_empty.png"/>
            {% endif %}
        </div>

      <div class="annotation-period {% if annotation.canEditOrDelete %}annotation-enter-edit-mode{% endif %}">{{ annotation.date }}</div>
        {% if annotation.canEditOrDelete %}
            <div class="annotation-period-edit" style="display:none;">
                <a href="#" class= "font">{{ annotation.date }}</a>
                <div class="datepicker" style="display:none;"/>
            </div>
        {% endif %}
    </td>

    {% if annotation.user is defined and userLogin != 'anonymous' %}
        <td class="annotation-user-cell">
            <span class="annotation-user">{{ annotation.user }}</span><br/>

        </td>
    {% endif %}


    <td class="annotation-value">
        <div class="annotation-view-mode">
            <span {% if annotation.canEditOrDelete %}title="{{ 'Annotations_ClickToEdit'|translate }}"
                  class="annotation-enter-edit-mode"{% endif %}>{{ annotation.note|raw }}</span>
        </div>


          {% if annotation.canEditOrDelete %}
            <div class="annotation-edit-mode" style="display:none;">
                <div class="input-field">
                    <input class="annotation-edit browser-default" type="text" value="{{ annotation.note|raw }}"/>
                </div>
                <br/>
                <input class="annotation-save btn" type="button" value="{{ 'General_Save'|translate }}"/>
                <input class="annotation-cancel btn" type="button" value="{{ 'General_Cancel'|translate }}"/>
            </div>
        {% endif %}
    </td>
<td class = "wider">
{% if annotation.canEditOrDelete %}

  <span class="table-action edit-annotation annotation-enter-edit-mode"  title="{{ 'Annotations_ClickToEdit'|translate }}">
    <span class="icon-edit"></span>
  </span>

  <a class="delete-annotation" title="Delete">
      <span class="icon-delete"></span>
  </a>

{% endif %}
</td>


</tr>