21 lines
740 B
HTML
21 lines
740 B
HTML
<div class="node clickable">
|
|
<vn-icon
|
|
class="arrow"
|
|
ng-class="{invisible: !$ctrl.item.sons}"
|
|
icon="keyboard_arrow_down"
|
|
translate-attr="::{title: 'Toggle'}">
|
|
</vn-icon>
|
|
<section class="content"></section>
|
|
<section class="buttons" ng-if="::!$ctrl.treeview.readOnly">
|
|
<vn-icon-button translate-attr="::{title: 'Remove'}"
|
|
icon="delete"
|
|
ng-click="$ctrl.treeview.onRemove($event, $ctrl.item)"
|
|
ng-if="$ctrl.item.parent">
|
|
</vn-icon-button>
|
|
<vn-icon-button translate-attr="::{title: 'Create'}"
|
|
icon="add_circle"
|
|
ng-click="$ctrl.treeview.onCreate($event, $ctrl.item)">
|
|
</vn-icon-button>
|
|
</section>
|
|
</div>
|