mirror of
https://github.com/bitwarden/browser
synced 2025-01-01 04:38:20 +01:00
new org button
This commit is contained in:
parent
028731458b
commit
a76053be58
@ -25,14 +25,20 @@
|
|||||||
<i class="fa fa-spinner fa-spin text-muted" *ngIf="action.loading" title="{{'loading' | i18n}}"></i>
|
<i class="fa fa-spinner fa-spin text-muted" *ngIf="action.loading" title="{{'loading' | i18n}}"></i>
|
||||||
</small>
|
</small>
|
||||||
</h1>
|
</h1>
|
||||||
<a href="#" routerLink="/settings/create-organization" class="btn btn-sm btn-outline-primary ml-auto">
|
<a href="#" routerLink="/settings/create-organization" class="btn btn-sm btn-outline-primary ml-auto" *ngIf="!loaded || (organizations && organizations.length)">
|
||||||
<i class="fa fa-plus fa-fw"></i>
|
<i class="fa fa-plus fa-fw"></i>
|
||||||
{{'newOrganization' | i18n}}
|
{{'newOrganization' | i18n}}
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<i class="fa fa-spinner fa-spin text-muted" *ngIf="!loaded" title="{{'loading' | i18n}}"></i>
|
<i class="fa fa-spinner fa-spin text-muted" *ngIf="!loaded" title="{{'loading' | i18n}}"></i>
|
||||||
<ng-container *ngIf="loaded">
|
<ng-container *ngIf="loaded">
|
||||||
<p *ngIf="!organizations || !organizations.length">{{'noOrganizationsList' | i18n}}</p>
|
<ng-container *ngIf="!organizations || !organizations.length">
|
||||||
|
<p>{{'noOrganizationsList' | i18n}}</p>
|
||||||
|
<a href="#" routerLink="/settings/create-organization" class="btn btn-outline-primary ml-auto">
|
||||||
|
<i class="fa fa-plus fa-fw"></i>
|
||||||
|
{{'newOrganization' | i18n}}
|
||||||
|
</a>
|
||||||
|
</ng-container>
|
||||||
<table class="table table-hover table-list" *ngIf="organizations && organizations.length">
|
<table class="table table-hover table-list" *ngIf="organizations && organizations.length">
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr *ngFor="let o of organizations">
|
<tr *ngFor="let o of organizations">
|
||||||
|
Loading…
Reference in New Issue
Block a user