24 lines
665 B
HTML
24 lines
665 B
HTML
<vn-watcher
|
|
vn-id="watcher"
|
|
url="ClientObservations"
|
|
id-field="id"
|
|
data="$ctrl.note"
|
|
save="post"
|
|
form="form">
|
|
</vn-watcher>
|
|
<form name="form" ng-submit="watcher.submitGo('client.card.note.index')" compact>
|
|
<vn-card class="vn-pa-lg">
|
|
<vn-horizontal>
|
|
<vn-textarea
|
|
vn-one
|
|
label="Note"
|
|
ng-model="$ctrl.note.text"
|
|
vn-focus>
|
|
</vn-textarea>
|
|
</vn-horizontal>
|
|
</vn-card>
|
|
<vn-button-bar>
|
|
<vn-submit label="Save"></vn-submit>
|
|
<vn-button ng-click="$ctrl.cancel()" label="Cancel"></vn-button>
|
|
</vn-button-bar>
|
|
</form> |