2016-02-04 09:28:31 -05:00
|
|
|
span(ng-controller="NotificationsController").userNotifications
|
|
|
|
ul.list-unstyled.notifications-list(
|
|
|
|
ng-if="notifications.length > 0",
|
|
|
|
ng-cloak
|
|
|
|
)
|
|
|
|
li.notification_entry(
|
|
|
|
ng-repeat="unreadNotification in notifications",
|
|
|
|
)
|
|
|
|
.row(ng-hide="unreadNotification.hide")
|
|
|
|
.col-xs-12
|
2016-02-11 07:34:38 -05:00
|
|
|
.alert.alert-info
|
2016-08-17 05:31:05 -04:00
|
|
|
div.notification_inner
|
|
|
|
span(ng-bind-html="unreadNotification.html").notification_body
|
|
|
|
span().notification_close
|
2016-08-05 11:41:11 -04:00
|
|
|
button(ng-click="dismiss(unreadNotification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|