Bump versions by x.(y+1).z for next dev cycle
[dlux.git] / modules / yangui-resources / src / main / resources / yangui / views / operational / leaf.tpl.html
1 <div class="leaf" ng-controller="LeafCtrl" ng-show='node.isFilled()'>
2     <span class="treeBullet" ng-show="node !== selSubApi.node">&#8226;</span>
3     <span class="leaf-label col-md-2">
4         {{getNodeName(node.localeLabel, node.label)}}
5         <i ng-if="node.isKey()" class="icon-key" tooltip="{{'key of '+node.parent.label+' list'}}"></i>
6         <button ng-if="node.getChildren('description', null, null, 'label').length > 0" class="yangButton iconQuestion inlineBlock" tooltip="{{node.getChildren('description', null, null, 'label')[0]}}" ></button>
7         <span ng-if="node.augmentationId" class="augmentIcon reversed" tooltip="{{ 'YANGUI_IS_AUGMENT' | translate }} {{ node.augmentationId }}">A</span>
8     </span>
9     <span class="leaf-label col-md-9"><strong>{{node.value}}</strong></span>
10     <div class="clear"></div>
11 </div>