NIHVIVO-1932 Don't print classgroup public name if empty or null
This commit is contained in:
parent
575ab24ef6
commit
607ffcdd89
1 changed files with 3 additions and 1 deletions
|
@ -9,7 +9,9 @@
|
|||
<#list classGroups as classGroup>
|
||||
<#-- Only render classgroups that have at least one class with individuals -->
|
||||
<#if (classGroup.individualCount > 0)>
|
||||
<h2>${classGroup.publicName}</h2>
|
||||
<#if classGroup.publicName?has_content>
|
||||
<h2>${classGroup.publicName}</h2>
|
||||
</#if>
|
||||
<ul role="list">
|
||||
<#list classGroup.classes as class>
|
||||
<#-- Only render classes with individuals -->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue