update to model utils to replace Capital letter with lowercase for one of the relationships, updates to concept generator to enable deletion of relationship on remove and not concept individual itself, also including addition of inverse property as well, also updating grant role generator to identify correct inverse predicate and not 'relatedRole' as it had been
This commit is contained in:
parent
6872af6545
commit
acc7dfcfda
6 changed files with 45 additions and 14 deletions
|
@ -4,6 +4,7 @@
|
|||
<#assign existingConcepts = editConfiguration.pageData.existingConcepts/>
|
||||
<#assign userDefinedConceptUrl = editConfiguration.pageData.userDefinedConceptUrl/>
|
||||
<#assign sources = editConfiguration.pageData.searchServices/>
|
||||
<#assign inversePredicate = editConfiguration.pageData.inversePredicate />
|
||||
|
||||
<#--If edit submission exists, then retrieve validation errors if they exist-->
|
||||
<#if editSubmission?has_content && editSubmission.submissionExists = true && editSubmission.validationErrors?has_content>
|
||||
|
@ -52,7 +53,7 @@
|
|||
</#if>
|
||||
</span>
|
||||
</span>
|
||||
<a href="${urls.base}/edit/primitiveDelete" class="remove">Remove</a>
|
||||
<a href="${urls.base}/edit/primitiveRdfEdit" class="remove">Remove</a>
|
||||
</span>
|
||||
</li>
|
||||
|
||||
|
@ -121,7 +122,10 @@
|
|||
|
||||
<script type="text/javascript">
|
||||
var customFormData = {
|
||||
dataServiceUrl: '${urls.base}/conceptSearchService'
|
||||
dataServiceUrl: '${urls.base}/conceptSearchService',
|
||||
subjectUri: '${editConfiguration.subjectUri}',
|
||||
predicateUri: '${editConfiguration.predicateUri}',
|
||||
inversePredicateUri: '${inversePredicate}'
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue