salix/modules/client/front/note/index/index.html

35 lines
1.0 KiB
HTML
Raw Normal View History

2018-07-16 06:00:04 +00:00
<vn-crud-model
vn-id="model"
url="/client/api/clientObservations"
filter="$ctrl.filter"
2018-07-16 06:00:04 +00:00
link="{clientFk: $ctrl.$stateParams.id}"
data="notes"
auto-load="true">
2018-07-16 06:00:04 +00:00
</vn-crud-model>
2019-10-02 17:24:42 +00:00
<vn-data-viewer
model="model"
class="vn-w-md">
2019-10-01 14:17:57 +00:00
<vn-card pad-medium>
<div class="note"
2018-07-16 06:00:04 +00:00
ng-repeat="note in notes"
2018-03-01 22:38:14 +00:00
pad-small
border-solid
border-radius
margin-small-bottom>
<vn-horizontal margin-small-bottom style="color: #666">
<vn-one>{{::note.worker.user.nickname}}</vn-one>
2019-02-27 16:04:00 +00:00
<vn-auto>{{::note.created | dateTime:'dd/MM/yyyy HH:mm'}}</vn-auto>
</vn-horizontal>
2018-03-01 22:38:14 +00:00
<vn-horizontal class="text">
2018-07-16 06:00:04 +00:00
{{::note.text}}
</vn-horizontal>
2019-10-01 14:17:57 +00:00
</div>
2018-03-01 22:38:14 +00:00
</vn-card>
2019-10-02 17:24:42 +00:00
</vn-data-viewer>
2018-07-25 13:14:03 +00:00
<a vn-tooltip="New note"
ui-sref="client.card.note.create({id: $ctrl.$stateParams.id})"
vn-bind="+"
fixed-bottom-right>
2018-07-16 06:00:04 +00:00
<vn-float-button icon="add"></vn-float-button>
</a>