Show mail status per domain in overview

This commit is contained in:
Johannes Zellner
2020-02-12 14:10:21 +01:00
parent 135548a03b
commit fa630a6cb5
2 changed files with 20 additions and 1 deletions

View File

@@ -20,12 +20,17 @@
<table class="table table-hover" style="margin: 0;">
<thead>
<tr>
<th style="width: 90%">Domain</th>
<th style="width: 5%"></th>
<th style="width: 85%">Domain</th>
<th style="width: 10%">Actions</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="domain in domains">
<td>
<i class="fa fa-circle" ng-style="{ color: domain.statusOk ? '#27CE65' : '#d9534f' }" ng-show="domain.status"></i>
<i class="fa fa-circle-notch fa-spin" ng-hide="domain.status"></i>
</td>
<td class="elide-table-cell no-padding">
<a href="/#/email/{{ domain.domain }}" class="email-domain-list-item">{{ domain.domain }}</a>
</td>