Changeset - 95eb0af77407
[Not reviewed]
default
0 1 0
Søren Løvborg - 9 years ago 2017-02-28 15:24:55
sorenl@unity3d.com
notifications: add tooltips to "mark as read" and "delete" buttons
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/templates/admin/notifications/notifications_data.html
Show inline comments
 
@@ -12,11 +12,11 @@ unread = lambda n:{False:'unread'}.get(n
 
      <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
0 comments (0 inline, 0 general)