NIHVIVO-1341 Added notes to list view config files on required and optional elements and how to structure the query. Removed edit-object since this can be derived from the ?subject ?property ?object statement in the query where clause.
This commit is contained in:
parent
555fd93962
commit
1c0aa39da5
5 changed files with 29 additions and 11 deletions
|
@ -0,0 +1,7 @@
|
|||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<#-- Template to list statements for a data property -->
|
||||
|
||||
<#list property.statements as statement>
|
||||
<li role="listitem">${statement.value}</li>
|
||||
</#list>
|
|
@ -22,12 +22,10 @@
|
|||
|
||||
<#-- List the statements for each property -->
|
||||
<ul class="property-list" role="list">
|
||||
<#-- data property -->
|
||||
<#-- data property -->
|
||||
<#if property.type == "data">
|
||||
<#list property.statements as statement>
|
||||
<li role="listitem">${statement.value}</li>
|
||||
</#list>
|
||||
|
||||
<#include "dataPropertyList-statements.ftl">
|
||||
|
||||
<#-- object property -->
|
||||
<#elseif property.collatedBySubclass>
|
||||
<#include "objectPropertyList-collated.ftl">
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
|
||||
|
||||
<#-- Template to list statements for an object property -->
|
||||
|
||||
<#list property.statements as statement>
|
||||
<li role="listitem">
|
||||
<#include "${property.template}">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue