duck-booking-tool-front/app/duck-detail.component.html
Gergely Polonkai 06af47fccf Move Duck detail/editor to a separate component
Signed-off-by: Gergely Polonkai <gergely@polonkai.eu>
2016-09-09 14:41:44 +02:00

11 lines
208 B
HTML

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