Better empty messages on billing, prototype and application managers. Also properly handles the 404 for the invoices manager.
This commit is contained in:
parent
3a2f271362
commit
dddab60058
4 changed files with 27 additions and 6 deletions
|
@ -1,11 +1,14 @@
|
|||
<div class="billing-invoices-element">
|
||||
<div class="cor-loader" ng-show="loading"></div>
|
||||
|
||||
<div ng-show="!loading && !invoices">
|
||||
No invoices have been created
|
||||
</div>
|
||||
<div class="empty" ng-if="!loading && !invoices.length">
|
||||
<div class="empty-primary-msg">No billing invoices found.</div>
|
||||
<div class="empty-secondary-msg">
|
||||
This account has not been billed by <span class="registry-name"></span>.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div ng-show="!loading && invoices">
|
||||
<div ng-show="!loading && invoices.length">
|
||||
<table class="co-table">
|
||||
<thead>
|
||||
<td>Billing Date/Time</td>
|
||||
|
|
Reference in a new issue