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

39 lines
1.1 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>
2018-12-17 12:52:16 +00:00
<vn-vertical compact>
<vn-card pad-large>
2018-03-01 22:38:14 +00:00
<vn-vertical
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>
2018-07-16 06:00:04 +00:00
<vn-auto>{{::note.created | date:'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>
2018-03-01 22:38:14 +00:00
</vn-vertical>
2018-08-03 05:52:37 +00:00
<vn-horizontal ng-if="model.data.length == 0">
<vn-one ad-small translate>
No results
</vn-one>
</vn-horizontal>
2018-03-01 22:38:14 +00:00
</vn-card>
</vn-vertical>
2018-07-16 06:00:04 +00:00
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>