Skip to content
Snippets Groups Projects
indexing-group-modal.component.html 589 B
Newer Older
  • Learn to ignore specific revisions
  • <div class="mat-dialog-content-container">
        <h2 mat-dialog-title color="primary">{{lang.chooseIndexationProfil}}</h2>
        <mat-dialog-content>
            <mat-nav-list>
                <ng-container *ngFor="let group of data.indexingGroups">
                    <a mat-list-item (click)="goTo(group)">
                        <mat-icon color="primary" mat-list-icon class="fa fa-users"></mat-icon>
                        <p mat-line>
                            {{group.label}}
                        </p>
                    </a>
                </ng-container>
            </mat-nav-list>
        </mat-dialog-content>
    </div>