2020-02-08 09:36:14 +00:00
|
|
|
<ion-header>
|
|
|
|
<ion-toolbar>
|
2020-02-08 17:19:00 +00:00
|
|
|
<ion-title contenteditable="true" #titleBar>{{ pageRecord.Name }}</ion-title>
|
2020-02-08 09:36:14 +00:00
|
|
|
</ion-toolbar>
|
|
|
|
</ion-header>
|
|
|
|
|
|
|
|
<ion-content>
|
|
|
|
<ng-container>
|
|
|
|
<div class="editor-root ion-padding">
|
|
|
|
<div class="host-container ion-padding">
|
|
|
|
<editor-host
|
|
|
|
#editorHosts
|
|
|
|
*ngFor="let record of hostRecords"
|
|
|
|
[(record)]="record"
|
|
|
|
(newHostRequested)="onNewHostRequested($event)"
|
|
|
|
(destroyHostRequested)="onDestroyHostRequested($event)"
|
|
|
|
></editor-host>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-02-08 17:19:00 +00:00
|
|
|
<div class="editor-buttons">
|
|
|
|
<ion-button (click)="onAddClick()" class="ion-padding ion-margin">Add Node</ion-button>
|
|
|
|
<ion-button (click)="onSaveClick()" class="ion-padding ion-margin">Save</ion-button>
|
|
|
|
</div>
|
2020-02-08 09:36:14 +00:00
|
|
|
</ng-container>
|
|
|
|
</ion-content>
|