NIHVIVO-2109 Updated title attribute to stay generic and not reference any particular class ("individuals" instead of "people")

This commit is contained in:
nac26 2011-02-10 22:02:14 +00:00
parent a0617b0b61
commit 3c205ae3e5

View file

@ -14,7 +14,7 @@
<#assign vClassCamel = vClass.name?capitalize?replace(" ", "")?uncap_first />
<#-- Only display vClasses with individuals -->
<#if (vClass.entityCount > 0)>
<li id="${vClassCamel}"><a href="#${vClassCamel}" title="Browse all people in this class" data-uri="${vClass.URI}">${vClass.name} <span class="count-classes">(${vClass.entityCount})</span></a></li>
<li id="${vClassCamel}"><a href="#${vClassCamel}" title="Browse all individuals in this class" data-uri="${vClass.URI}">${vClass.name} <span class="count-classes">(${vClass.entityCount})</span></a></li>
</#if>
</#list>
</ul>