VIVO-965: list view changes so that non-faux properties will be collated correctly

This commit is contained in:
Tim Worrall 2015-02-09 17:13:16 -05:00
parent b3c5aaa794
commit a7541643f4
2 changed files with 15 additions and 14 deletions

View file

@ -9,8 +9,12 @@
<@showStatement statement />
<#macro showStatement statement>
<#-- The query retrieves a type only for Persons. Post-processing will remove all but one. -->
<a href="${profileUrl(statement.uri("object"))}" title="${i18n().name}">${statement.label!statement.localName!}</a>&nbsp; ${statement.title!statement.type!}
<#-- The query retrieves a type only for Persons. Post-processing will remove all but one. -->
<#if statement.subclass??>
<a href="${profileUrl(statement.uri("object"))}" title="${i18n().name}">${statement.label!statement.localName!}</a>
<#else>
<a href="${profileUrl(statement.uri("object"))}" title="${i18n().name}">${statement.label!statement.localName!}</a>&nbsp; ${statement.title!statement.type!}
</#if>
</#macro>