blob: 72591d4897e01d8709756efaf414100c71de7cf0 [file]
{{!--
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">
<div class="row-fluid">
<div class="span6">
<label class="no-margin label-size13-weightbold">Name : {{objectName}}</label>
<label class="no-margin label-size13-weightbold"> Date &nbsp;&nbsp;: {{objectCreatedDate}}</label>
<label class="no-margin label-size13-weightbold" > Updated By &nbsp;&nbsp;: {{userName}}</label>
</div>
<div class="span6 text-right">
<div class="add-text legend"></div> Added
<div class="delete-text legend"></div> Deleted
</div>
</div>
{{#if collection.length}}
<h5>Repository 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-left">
<h3>Old Value</h3>
<ol class="unstyled data">
{{#each collection}}
{{#if ./this.attributes.previousValue}}
{{#compare ./this.attributes.previousValue "eq" ''}}
<li>--</li>
{{else}}
<li class="change-row">{{{highlightNewForAttr ./this.attributes.newValue ./this.attributes.previousValue 'old'}}}</li>
{{/compare}}
{{else}}
<li>--</li>
{{/if}}
{{/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">{{{highlightNewForAttr ./this.attributes.newValue ./this.attributes.previousValue 'new'}}}</li>
{{/compare}}
{{else}}
<li>--</li>
{{/if}}
{{/each}}
</ol>
</div>
</div>
{{/if}}
{{#if newConnConfig}}
<h5>Connection Configurations :</h5>
<div class="diff">
<div class="diff-left">
<h3>Fields</h3>
<ol class="attr">
{{#eachProperty newConnConfig}}
<li class="change-row">{{property}}</li>
{{/eachProperty }}
</ol>
</div>
<div class="diff-left">
<h3>Old Value</h3>
<ol class="unstyled data">
{{#eachProperty previousConnConfig}}
{{#if value}}
<li class="change-row">{{{highlightNewForObj property value ../../newConnConfig 'old'}}}</li>
{{else}}
<li >--</li>
{{/if}}
{{/eachProperty }}
</ol>
</div>
<div class="diff-right">
<h3>New Value</h3>
<ol class="unstyled data">
{{#eachProperty newConnConfig}}
{{#if value}}
<li class="change-row">{{{highlightNewForObj property value ../../previousConnConfig 'new'}}}</li>
{{else}}
<li >--</li>
{{/if}}
{{/eachProperty }}
</ol>
</div>
</div>
{{/if}}
</div>