List unread notifications in accounts view

This commit is contained in:
Johannes Zellner
2019-01-07 18:05:02 +01:00
parent 2bc66af55d
commit fa04bea64b
2 changed files with 53 additions and 0 deletions

View File

@@ -285,6 +285,39 @@
<br/>
<div class="text-left">
<h3>Notifications</h3>
</div>
<div class="card">
<div class="grid-item-top">
<div class="row">
<div class="col-xs-12">
<table class="table table-hover">
<thead>
<tr>
<th style="width:30%">Title</th>
<th style="width:70%" class="hidden-xs hidden-sm">Message</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="notification in notifications">
<td class="text-left elide-table-cell" ng-click="notificationClicked(notification)">
{{ notification.title }}
</td>
<td class="text-left hand elide-table-cell hidden-xs hidden-sm" ng-click="notificationClicked(notification)">
{{ notification.message }}
</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<br/>
<div class="text-left">
<h3>API Tokens <button class="btn btn-xs btn-primary btn-outline pull-right" ng-click="tokenAdd.show(apiClient)"><i class="fa fa-plus"></i> New Token</button> </h3>
</div>