frontend/src/app/pages/editor/editor.page.html

26 lines
816 B
HTML
Raw Normal View History

2020-02-08 09:36:14 +00:00
<ion-header>
<ion-toolbar>
<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>
<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>