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

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Annotations/templates/annotation.twig')
-rwxr-xr-xplugins/Annotations/templates/annotation.twig45
1 files changed, 45 insertions, 0 deletions
diff --git a/plugins/Annotations/templates/annotation.twig b/plugins/Annotations/templates/annotation.twig
new file mode 100755
index 0000000000..e3144413af
--- /dev/null
+++ b/plugins/Annotations/templates/annotation.twig
@@ -0,0 +1,45 @@
+<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/Zeitgeist/theme/images/star.png"/>
+ {% else %}
+ <img src="plugins/Zeitgeist/theme/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="#">{{ annotation.date }}</a>
+ <div class="datepicker" style="display:none"/>
+ </div>
+ {% endif %}
+ </td>
+ <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 }}</span>
+ {% if annotation.canEditOrDelete %}
+ <a href="#" class="edit-annotation annotation-enter-edit-mode" title="{{ 'Annotations_ClickToEdit'|translate }}">{{ 'General_Edit'|translate }}...</a>
+ {% endif %}
+ </div>
+ {% if annotation.canEditOrDelete %}
+ <div class="annotation-edit-mode" style="display:none">
+ <input class="annotation-edit" type="text" value="{{ annotation.note }}"/>
+ <br/>
+ <input class="annotation-save submit" type="button" value="{{ 'General_Save'|translate }}"/>
+ <input class="annotation-cancel submit" type="button" value="{{ 'General_Cancel'|translate }}"/>
+ </div>
+ {% endif %}
+ </td>
+ {% if annotation.user is defined and userLogin != 'anonymous' %}
+ <td class="annotation-user-cell">
+ <span class="annotation-user">{{ annotation.user }}</span><br/>
+ {% if annotation.canEditOrDelete %}
+ <a href="#" class="delete-annotation" style="display:none" title="{{ 'Annotations_ClickToDelete'|translate }}">{{ 'General_Delete'|translate }}</a>
+ {% endif %}
+ </td>
+ {% endif %}
+</tr>
+