changeset 6519:95eb0af77407

notifications: add tooltips to "mark as read" and "delete" buttons
author Søren Løvborg <sorenl@unity3d.com>
date Tue, 28 Feb 2017 15:24:55 +0100
parents a083ed3a5032
children 10f16cf8289e
files kallithea/templates/admin/notifications/notifications_data.html
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/templates/admin/notifications/notifications_data.html	Tue Feb 28 17:04:10 2017 +0100
+++ b/kallithea/templates/admin/notifications/notifications_data.html	Tue Feb 28 15:24:55 2017 +0100
@@ -12,11 +12,11 @@
       <span class="desc ${unread(notification.read)}">
         <a href="${url('notification', notification_id=notification.notification.notification_id)}">${notification.notification.description}</a>
       </span>
-      <span class="delete-notifications">
+      <span class="delete-notifications" title="${_('Delete')}">
         <span id="${notification.notification.notification_id}" class="delete-notification"><i class="btn icon-minus-circled"></i></span>
       </span>
       %if not notification.read:
-      <span class="read-notifications">
+      <span class="read-notifications" title="${_('Mark as read')}">
         <span id="${notification.notification.notification_id}" class="read-notification"><i class="btn icon-ok"></i></span>
       </span>
       %endif