| {{!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --}} |
| <div class="diff-content"> |
| <!-- <label class="no-margin label-size13-weightbold">Name : {{objectName}}</label> --> |
| <label class="no-margin label-size13-weightbold">Policy Name : {{policyName}}</label> |
| <label class="no-margin label-size13-weightbold">Repository Type : {{repositoryType}}</label> |
| <label class="no-margin label-size13-weightbold"> Date : {{objectCreatedDate}}</label> |
| <label class="no-margin label-size13-weightbold" > Created By : {{userName}}</label> |
| |
| {{#if collection.length}} |
| <h5>Policy Details :</h5> |
| <div class="diff"> |
| <div class="diff-left"> |
| <h3>Fields</h3> |
| <ol class="attr"> |
| {{#each collection}} |
| <li class="change-row">{{./this.attributes.attributeName}}</li> |
| {{/each}} |
| </ol> |
| </div> |
| <div class="diff-right"> |
| <h3>New Value</h3> |
| <ol class="unstyled data"> |
| {{#each collection}} |
| {{#if ./this.attributes.newValue}} |
| {{#compare ./this.attributes.newValue "eq" ''}} |
| <li>--</li> |
| {{else}} |
| <li class="change-row">{{./this.attributes.newValue}}</li> |
| {{/compare}} |
| {{else}} |
| <li>--</li> |
| {{/if}} |
| {{/each}} |
| </ol> |
| </div> |
| </div> |
| {{/if}} |
| {{#if isGroupPerm}} |
| <h5>Group Permissions :</h5> |
| <div class="diff"> |
| <div class="diff-left"> |
| <h3>Groups</h3> |
| <ol class="attr"> |
| {{#eachProperty newGroupPermList}} |
| <li class="change-row">{{property}}</li> |
| {{/eachProperty }} |
| </ol> |
| </div> |
| <div class="diff-right" data-id="diff"> |
| <h3>New Value</h3> |
| <ol class="unstyled data"> |
| {{#eachProperty newGroupPermList}} |
| <li class="change-row"> |
| {{#each value}} |
| {{#if permType}} |
| {{permType}}<span>,</span> |
| {{/if}} |
| {{/each}} |
| {{#each value}} |
| {{#if ipAddress}} |
| IP : {{ipAddress}} |
| {{/if}} |
| {{/each}} |
| </li> |
| {{/eachProperty }} |
| </ol> |
| </div> |
| </div> |
| {{/if}} |
| {{#if isUserPerm}} |
| <h5>User Permissions :</h5> |
| <div class="diff"> |
| <div class="diff-left"> |
| <h3>Users</h3> |
| <ol class="attr"> |
| {{#eachProperty newUserPermList}} |
| <li class="change-row">{{property}}</li> |
| {{/eachProperty }} |
| </ol> |
| </div> |
| <div class="diff-right" data-id="diff"> |
| <h3>New Value</h3> |
| <ol class="unstyled data"> |
| {{#eachProperty newUserPermList}} |
| <li class="change-row"> |
| {{#each value}} |
| {{#if permType}} |
| {{permType}}<span>,</span> |
| {{/if}} |
| {{/each}} |
| {{#each value}} |
| {{#if ipAddress}} |
| IP : {{ipAddress}} |
| {{/if}} |
| {{/each}} |
| </li> |
| {{/eachProperty }} |
| </ol> |
| </div> |
| </div> |
| {{/if}} |
| |
| </div> |