view rhodecode/templates/admin/notifications/notifications_data.html @ 2503:d04243e932cc beta

Added filtering on inbox by comments
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 25 Jun 2012 22:40:04 +0200
parents 64f7cf8f6a33
children 8ee72933405f
line wrap: on
line source


%if c.notifications:
<%
unread = lambda n:{False:'unread'}.get(n)
%>
<div class="notification-paginator">
  <div class="pagination-wh pagination-left">
  ${c.notifications.pager('$link_previous ~2~ $link_next')}
  </div>
</div>

<div class="notification-list  notification-table">
%for notification in c.notifications:
  <div id="notification_${notification.notification.notification_id}" class="container ${unread(notification.read)}">
    <div class="notification-header">
      <div class="gravatar">
          <img alt="gravatar" src="${h.gravatar_url(h.email(notification.notification.created_by_user.email),24)}"/>
      </div>
      <div class="desc ${unread(notification.read)}">
      <a href="${url('notification', notification_id=notification.notification.notification_id)}">${notification.notification.description}</a>
      </div>
      <div class="delete-notifications">
        <span id="${notification.notification.notification_id}" class="delete-notification delete_icon action"></span>
      </div>
    </div>
    <div class="notification-subject">${h.literal(notification.notification.subject)}</div>
  </div>
%endfor
</div>

<div class="notification-paginator">
  <div class="pagination-wh pagination-left">
  ${c.notifications.pager('$link_previous ~2~ $link_next')}
  </div>
</div>

%else:
    <div class="table">${_('No notifications here yet')}</div>
%endif