salix/modules/travel/front/descriptor-menu/index.html

37 lines
936 B
HTML
Raw Normal View History

2020-11-16 18:04:37 +00:00
<vn-icon-button
icon="more_vert"
vn-popover="menu">
</vn-icon-button>
<vn-menu vn-id="menu">
<vn-list>
<vn-item
2020-11-17 15:52:19 +00:00
id="clone"
2020-11-16 18:04:37 +00:00
ng-click="clone.show()"
translate>
Clone travel
</vn-item>
2020-12-28 13:53:26 +00:00
<vn-item
id="cloneWithEntries"
ng-click="cloneWithEntries.show()"
translate>
Clone travel and his entries
</vn-item>
2020-11-16 18:04:37 +00:00
</vn-list>
</vn-menu>
<!-- Clone travel popup -->
<vn-confirm
vn-id="clone"
on-accept="$ctrl.onCloneAccept()"
question="Do you want to clone this travel?"
message="All it's properties will be copied">
</vn-confirm>
2020-12-28 13:53:26 +00:00
<!-- Clone travel popup -->
<vn-confirm
vn-id="cloneWithEntries"
on-accept="$ctrl.onCloneWithEntriesAccept()"
question="Do you want to clone this travel and all containing entries?"
message="All it's properties will be copied">
</vn-confirm>