Finish basic notifications system and verify it works for the "password_required" notification.
This commit is contained in:
parent
f186fa2888
commit
578add3b9e
7 changed files with 128 additions and 12 deletions
7
static/directives/notification-view.html
Normal file
7
static/directives/notification-view.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
<div class="notification-view-element">
|
||||
<div class="container" ng-click="showNotification();">
|
||||
<div class="message">{{ getMessage(notification) }}</div>
|
||||
<div class="datetime">{{ parseDate(notification.created) | date:'medium'}}</div>
|
||||
<div class="circle" ng-class="getClass(notification)"></div>
|
||||
</div>
|
||||
</div>
|
Reference in a new issue