17 lines
781 B
HTML
17 lines
781 B
HTML
<mat-card>
|
|
<mat-card-header>
|
|
<mat-card-title>Characterspecific Gamesystems</mat-card-title>
|
|
</mat-card-header>
|
|
<mat-card-content>
|
|
<mat-accordion>
|
|
<mat-expansion-panel *ngFor="let templateSystem of character!.characterSpecificTemplateSystems">
|
|
<mat-expansion-panel-header>
|
|
<mat-panel-title>{{templateSystem.componentName}}</mat-panel-title>
|
|
</mat-expansion-panel-header>
|
|
<app-gamesystem-editor [templateElement]="character" [gamesystem]="templateSystem" [scriptAccounts]="gameModel!.scriptAccounts"></app-gamesystem-editor>
|
|
</mat-expansion-panel>
|
|
</mat-accordion>
|
|
<button mat-stroked-button class="specify-btn" (click)="openTemplateSpecificator()">Specify Templatesystem</button>
|
|
</mat-card-content>
|
|
</mat-card>
|