2016-01-22 15:08:39 -05:00
|
|
|
span(ng-controller="NotificationsController")
|
2016-02-04 07:11:45 -05:00
|
|
|
.col-md-12
|
2016-01-22 15:08:39 -05:00
|
|
|
.row
|
2016-02-04 07:11:45 -05:00
|
|
|
ul.list-unstyled.notifications-list(
|
|
|
|
ng-if="notifications.length > 0",
|
|
|
|
ng-cloak
|
|
|
|
)
|
|
|
|
li.notification_entry(
|
|
|
|
ng-repeat="unreadNotification in notifications",
|
2016-01-21 15:42:50 -05:00
|
|
|
)
|
2016-02-04 07:11:45 -05:00
|
|
|
.row(ng-hide="unreadNotification.hide")
|
|
|
|
.col-xs-12
|
|
|
|
.alert.alert-warning
|
|
|
|
span(ng-bind-html="unreadNotification.html")
|
|
|
|
button(ng-click="dismiss(unreadNotification)").close.pull-right
|
|
|
|
span(aria-hidden="true") ×
|
|
|
|
span.sr-only #{translate("close")}
|