Update Umbraco to 7.12.2

This commit is contained in:
2018-09-16 15:08:47 -04:00
parent 7ed7776432
commit 616ab81bad
764 changed files with 142787 additions and 66790 deletions
+46
View File
@@ -0,0 +1,46 @@
<div ng-controller="Umbraco.Editors.Dictionary.ListController as vm">
<umb-load-indicator ng-if="vm.loading">
</umb-load-indicator>
<umb-editor-view ng-if="!vm.loading">
<umb-editor-header
name="vm.title"
hide-alias="true"
hide-description="true"
hide-icon="true"
name-locked="true">
</umb-editor-header>
<umb-editor-container>
<div>
<div class="umb-table" ng-if="vm.items">
<div class="umb-table-head">
<div class="umb-table-row">
<div class="umb-table-cell umb-table__name not-fixed">
<span><localize key="general_name">Name</localize></span>
</div>
<div class="umb-table-cell" ng-repeat="column in vm.items[0].translations">
<span ng-bind="column.displayName"></span>
</div>
</div>
</div>
</div>
<div class="umb-table-body">
<div class="umb-table-row"
ng-repeat="item in vm.items">
<div class="umb-table-cell umb-table__name not-fixed">
<a title="{{ item.name }}" class="umb-table-body__link" prevent-default
ng-click="vm.clickItem(item.id)"
ng-bind="item.name" style="padding-left:{{item.level*10}}px">
</a>
</div>
<div class="umb-table-cell" ng-repeat="column in item.translations">
<i class="{{column.hasTranslation ? 'icon-check color-green' : 'icon-alert color-red'}}"></i>
</div>
</div>
</div>
</div>
</umb-editor-container>
</umb-editor-view>
</div>