2016-09-06 12:21:25 +00:00
|
|
|
<div *ngIf="duck">
|
|
|
|
<div>
|
2016-09-06 13:35:20 +00:00
|
|
|
<label>id: </label>
|
2016-09-06 12:21:25 +00:00
|
|
|
{{ duck.id }}
|
|
|
|
</div>
|
|
|
|
<div>
|
2016-09-06 13:35:20 +00:00
|
|
|
<label>color: </label>
|
|
|
|
<input [(ngModel)]="duck.color" placeholder="Color" />
|
2016-09-06 12:21:25 +00:00
|
|
|
</div>
|
2016-09-06 13:54:03 +00:00
|
|
|
<button (click)="save()">Save</button>
|
2016-09-06 13:35:20 +00:00
|
|
|
<button (click)="goBack()">Back</button>
|
2016-09-06 12:21:25 +00:00
|
|
|
</div>
|