NIHVIVO-1333 Display the value of data property statements

This commit is contained in:
rjy7 2010-12-06 21:44:07 +00:00
parent 5b0a4eb03c
commit 0c8e1afe35

View file

@ -21,6 +21,15 @@
<#-- Now list the properties in the group --> <#-- Now list the properties in the group -->
<#list group.properties as property> <#list group.properties as property>
<h4>${property.name}</h4> <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>
</#list> </#list>