NIHVIVO-3303 display of external concepts and/or the defining vocabulary associated with a concept

This commit is contained in:
stellamit 2011-11-10 21:19:19 +00:00
parent 337249e90c
commit cf2e90a9ad
2 changed files with 27 additions and 2 deletions

View file

@ -12,8 +12,8 @@
next statement -->
<#macro showConcept statement>
<#if statement.vocabularySourceName??>
<a href="${statement.concept}">${statement.conceptLabel!statement.conceptName}</a> (<a href="${statement.vocabularySource}">${statement.vocabularySourceName}</a>)
<a href="${profileUrl(statement.concept)}">${statement.conceptLabel!statement.conceptName}</a> (${statement.vocabularySourceName})
<#else>
<a href="${statement.concept}">${statement.conceptLabel!statement.conceptName}</a>
<a href="${profileUrl(statement.concept)}">${statement.conceptLabel!statement.conceptName}</a>
</#if>
</#macro>