diff --git a/webapp/web/templates/freemarker/body/individualList.ftl b/webapp/web/templates/freemarker/body/individualList.ftl
index 9bebae9f4..1603c7656 100644
--- a/webapp/web/templates/freemarker/body/individualList.ftl
+++ b/webapp/web/templates/freemarker/body/individualList.ftl
@@ -35,18 +35,14 @@ ${stylesheets.add("/css/browseIndex.css")}
<#list individuals as individual>
-
- <#-- The old JSP version uses a custom search view if one is defined, but it doesn't make sense
- to do that in the current system, because we don't use the default search view. We could define
- 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}"> -->
- ${individual.name}<#if individual.moniker??> ${individual.moniker}#if>
+ <#assign moniker = individual.moniker!"">
+ ${individual.name}<#if moniker?has_content> ${moniker}#if>
<#if individual.links?has_content>
<@l.firstLastList>
<#list individual.links as link>
<#if link?? && link.url?? && link.anchor?? >
- - ${link.anchor}
+ - ${link.anchor}
#if>
#list>
@l.firstLastList>