VIVO-965: list view changes so that non-faux properties will be collated correctly
This commit is contained in:
parent
b3c5aaa794
commit
a7541643f4
2 changed files with 15 additions and 14 deletions
|
@ -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> ${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> ${statement.title!statement.type!}
|
||||
</#if>
|
||||
</#macro>
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue