mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
787 B
27 lines
787 B
<div class="container">
|
|
<h1
|
|
class="align-items-center d-none d-sm-flex h3 justify-content-center mb-3 text-center"
|
|
>
|
|
<span i18n>Granted Access</span>
|
|
<gf-premium-indicator
|
|
*ngIf="user?.subscription?.type === 'Basic'"
|
|
class="ml-1"
|
|
></gf-premium-indicator>
|
|
</h1>
|
|
<gf-access-table
|
|
[accesses]="accesses"
|
|
[showActions]="hasPermissionToDeleteAccess"
|
|
(accessDeleted)="onDeleteAccess($event)"
|
|
></gf-access-table>
|
|
<div *ngIf="hasPermissionToCreateAccess" class="fab-container">
|
|
<a
|
|
class="align-items-center d-flex justify-content-center"
|
|
color="primary"
|
|
mat-fab
|
|
[queryParams]="{ createDialog: true }"
|
|
[routerLink]="[]"
|
|
>
|
|
<ion-icon name="add-outline" size="large"></ion-icon>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
|