argos/dmp-frontend/src/app/ui/dmp/editor/available-profiles/available-profiles.componen...

13 lines
670 B
HTML
Raw Normal View History

<h4 mat-dialog-title>{{ 'DMP-EDITOR.DATASET-TEMPLATE-LIST.TITLE' | translate }}</h4>
2018-11-29 15:19:08 +01:00
<div mat-dialog-content>
<mat-selection-list #datasetsprofiles [ngModel]="selectedOptions" >
<mat-list-option *ngFor="let profile of profiles" [value]="profile" [selected]='isOptionSelected(profile)' matTooltip="{{profile.description}}">
2018-11-29 15:19:08 +01:00
{{profile.label}}
</mat-list-option>
</mat-selection-list>
<p>
{{ 'DMP-EDITOR.DATASET-TEMPLATE-LIST.TEXT' | translate }} {{datasetsprofiles.selectedOptions.selected.length}}
2018-11-29 15:19:08 +01:00
</p>
2019-11-06 15:30:15 +01:00
<button mat-raised-button color="primary" (click)="addProfiles(datasetsprofiles)">{{ 'DMP-EDITOR.DATASET-TEMPLATE-LIST.OK' | translate }}</button>
2018-11-29 15:19:08 +01:00
</div>