<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-3"></div>
|
|
<div class="col-sm-6">
|
|
<div class="panel">
|
|
<div class="panel-heading c_deepPurpleG500to300">
|
|
<h3 class="panel-title">
|
|
Notifications
|
|
<span class="badge badge-secondary pull-right c_deepPurpleG500to300">{{storageuser.notifications.length}}</span>
|
|
</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
<div ng-show="!notifications[0]" class="item">
|
|
No notifications yet
|
|
</div>
|
|
<div class="list-group">
|
|
<a ng-repeat="notification in notifications | orderBy: '-date'" ng-show="notification.state=='pendent'" class="list-group-item c_deepPurple100" href="#!/{{notification.link}}">
|
|
<div class="pull-right">
|
|
<div class="o_text_purple600">{{notification.date | date:"dd/MM"}}</div>
|
|
<div class="o_text_purple600">{{notification.date | date:"HH:mm:ss"}}</div>
|
|
</div>
|
|
<i ng-show="notification.state=='pendent'" class="icon {{notification.icon}} o_text_purple600"></i>
|
|
<p>{{notification.message}}</p>
|
|
</a>
|
|
<a ng-repeat="notification in notifications | orderBy: '-date'" ng-show="notification.state=='viewed'" class="list-group-item" href="#!/{{notification.link}}">
|
|
<div class="pull-right">
|
|
<div class="">{{notification.date | date:"dd/MM"}}</div>
|
|
<div class="">{{notification.date | date:"HH:mm:ss"}}</div>
|
|
</div>
|
|
<i ng-show="notification.state=='viewed'" class="icon {{notification.icon}}"></i>
|
|
<h2>{{notification.message}}</h2>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|