NIHVIVO-1332 Display property title on untitled properties like phone, email if there is an add link to display. Changed a Java class name.

This commit is contained in:
rjy7 2011-01-11 20:54:14 +00:00
parent a91f571868
commit a6adc5163d
13 changed files with 53 additions and 42 deletions

View file

@ -39,9 +39,12 @@
<#-- Overview -->
<#assign overview = propertyGroups.getPropertyAndRemoveFromList("${core}overview")!>
<#if overview?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
<@p.showLabelAndAddLink overview showEditingLinks />
<#list overview.statements as statement>
<@p.editingLinks statement showEditingLinks />
<p class="individual-overview">${statement.value}</p>
<p class="individual-overview">
<@p.editingLinks statement showEditingLinks />
${statement.value}
</p>
</#list>
</#if>