Don't show moniker span if there's no moniker
This commit is contained in:
parent
c748a924dc
commit
df9b1cb99d
1 changed files with 3 additions and 7 deletions
|
@ -35,12 +35,8 @@ ${stylesheets.add("/css/browseIndex.css")}
|
||||||
<ul>
|
<ul>
|
||||||
<#list individuals as individual>
|
<#list individuals as individual>
|
||||||
<li>
|
<li>
|
||||||
<#-- The old JSP version uses a custom search view if one is defined, but it doesn't make sense
|
<#assign moniker = individual.moniker!"">
|
||||||
to do that in the current system, because we don't use the default search view. We could define
|
<a href="${individual.profileUrl}">${individual.name}</a><#if moniker?has_content> <span class="moniker">${moniker}</span></#if>
|
||||||
a custom list or use the custom short view, but for now just hard-code the view here; it will not be
|
|
||||||
customizable.
|
|
||||||
<#include "${individual.searchView}"> -->
|
|
||||||
<a href="${individual.profileUrl}">${individual.name}</a><#if individual.moniker??> <span class="moniker">${individual.moniker}</span></#if>
|
|
||||||
<#if individual.links?has_content>
|
<#if individual.links?has_content>
|
||||||
<ul class="individualData">
|
<ul class="individualData">
|
||||||
<@l.firstLastList>
|
<@l.firstLastList>
|
||||||
|
|
Loading…
Add table
Reference in a new issue