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-05 11:41:11 -04:00
|
|
|
.row
|
|
|
|
.col-xs-11
|
|
|
|
span(ng-bind-html="unreadNotification.html")
|
|
|
|
.col-xs-1
|
|
|
|
button(ng-click="dismiss(unreadNotification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|