Remove code moved to DluxApps
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / operational / input.tpl.html
diff --git a/modules/yangman-resources/src/main/resources/yangman/views/rightpanel/form/operational/input.tpl.html b/modules/yangman-resources/src/main/resources/yangman/views/rightpanel/form/operational/input.tpl.html
deleted file mode 100644 (file)
index 617e2f4..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-<div ng-controller="YMInputCtrl as yangInput"
-     class="yangmanModule__right-panel__form__element-container"
-     ng-class="{'expanded' : node.expanded}"
-     ng-show="node.isFilled()">
-
-    <!-- container title -->
-    <div layout="row"
-         layout-align="start center"
-         class="pointer container-label"
-         ng-click="yangInput.toggleExpanded()">
-
-        <!-- Expand Icon -->
-        <md-icon md-font-set="material-icons" class="top-icon top-element">
-            <md-tooltip md-direction="left">{{ 'YANGMAN_SHOW_HIDE_CON' | translate }}</md-tooltip>
-            {{node.expanded ? 'keyboard_arrow_down':'keyboard_arrow_right'}}
-        </md-icon>
-
-        <!-- Container label -->
-        <p class="top-element" ym-info-box node="node"> {{yangForm.getNodeName(node.localeLabel, node.label)}} </p>
-
-        <!-- Action menu -->
-        <yang-form-menu is-action-menu="yangInput.isActionMenu()"
-                        augmentations="augmentations"
-                        node="node"></yang-form-menu>
-
-    </div>
-
-    <!-- output's children -->
-    <div ng-if="node.expanded">
-        <div ng-repeat="node in node.getChildren(null,null,constants.NODE_UI_DISPLAY)"
-             ng-include="yangForm.viewPath + '/operational/' + node.type+'.tpl.html'"
-             ng-hide="node.augmentationId && !augmentations.getAugmentation(node.parent, node.augmentationId).expanded">
-        </div>
-    </div>
-</div>