duck-booking-tool-front/app/duck-detail.component.html
Gergely Polonkai 29a0eb7f33 Move to using routers
Signed-off-by: Gergely Polonkai <gergely@polonkai.eu>
2016-09-09 14:42:14 +02:00

12 lines
257 B
HTML

<div *ngIf="duck">
<div>
<label>id: </label>
{{ duck.id }}
</div>
<div>
<label>color: </label>
<input [(ngModel)]="duck.color" placeholder="Color" />
</div>
<button (click)="goBack()">Back</button>
</div>