NIHVIVO-1333 Display the value of data property statements
This commit is contained in:
parent
5b0a4eb03c
commit
0c8e1afe35
1 changed files with 9 additions and 0 deletions
|
@ -21,6 +21,15 @@
|
|||
<#-- Now list the properties in the group -->
|
||||
<#list group.properties as property>
|
||||
<h4>${property.name}</h4>
|
||||
|
||||
<#-- List the statements for each property -->
|
||||
<#list property.statements as statement>
|
||||
<#if statement.value??> <#-- data property -->
|
||||
<div class="dataprop-value">
|
||||
${statement.value}
|
||||
</div>
|
||||
</#if>
|
||||
</#list>
|
||||
</#list>
|
||||
|
||||
</#list>
|
Loading…
Add table
Reference in a new issue