097bd59075eb117a4bae6edff1c83fee715c116a
[dlux.git] / modules / yangman-resources / src / main / resources / yangman / views / rightpanel / form / operational / leaf-list.tpl.html
1 <div ng-controller="LeafListCtrl" class="customContainer leaflist  {{ node.expanded ? '' : 'withoutBorder' }}" ng-show='node.isFilled()'>
2     <div class="topContainerPart">
3         <span class="treeBullet containerBullet" ng-show="node !== selSubApi.node">&#8226;</span>
4         <button class="yangButton {{ node.expanded ? 'iconArrowDown' : 'iconArrowRight' }} inlineBlock" tooltip="{{ 'SHOW_HIDE_ELEM' | translate }}" ng-click='toggleExpanded()'></button>
5         <button class="btn-name ng-scope btn-slim">
6             {{yangForm.getNodeName(node.localeLabel, node.label)}}
7         </button>
8         <button ng-if="node.getChildren('description', null, null, 'label').length > 0" class="yangButton iconQuestion inlineBlock" tooltip="{{node.getChildren('description', null, null, 'label')[0]}}" ></button>
9         <span ng-if="node.augmentationId" class="augmentIcon reversed" tooltip="{{ 'YANGUI_IS_AUGMENT' | translate }} {{ node.augmentationId }}">A</span>
10     </div>
11
12     <div class="leafListValue" ng-repeat="elem in node.value" ng-show="node.expanded">
13         <span class="block"><strong>{{elem.value}}</strong></span>
14     </div>
15
16     <i class="icon-caret-down borderArrow" ng-show="node.expanded"></i>
17 </div>