NIHVIVO-2449 Display preferred title on individuallist page

This commit is contained in:
ryounes 2011-07-05 23:03:47 +00:00
parent 1c52d91b08
commit 0347b682c7
18 changed files with 145 additions and 177 deletions

View file

@ -35,19 +35,8 @@ ${stylesheets.add('<link rel="stylesheet" href="${urls.base}/css/browseIndex.css
<ul>
<#list individuals as individual>
<li>
<a href="${individual.profileUrl}">${individual.name}</a>
<#-- <#if individual.moniker?has_content> <span class="moniker">${individual.moniker}</span></#if> -->
<#assign links = individual.links>
<#if links?has_content>
<ul class="individualData">
<@l.firstLastList>
<#list links as link>
<li><a class="externalLink" href="${link.url}">${link.anchor}</a></li>
</#list>
</@l.firstLastList>
</ul>
</#if>
<li>
<#include "listedIndividual.ftl">
</li>
</#list>
</ul>

View file

@ -0,0 +1,5 @@
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Display of an individual in a list (/individuallist). -->
<a href="${individual.profileUrl}">${individual.name}</a>