Changed name of IndividualProfileUrlMethod in template data model from "url" to "profileUrl"
This commit is contained in:
parent
583ec198d5
commit
9011fc9425
4 changed files with 8 additions and 8 deletions
|
@ -13,10 +13,10 @@
|
||||||
|
|
||||||
<#local linkedIndividual>
|
<#local linkedIndividual>
|
||||||
<#if statement.infoResource??>
|
<#if statement.infoResource??>
|
||||||
<a href="${url(statement.infoResource)}">${statement.infoResourceName}</a>
|
<a href="${profileUrl(statement.infoResource)}">${statement.infoResourceName}</a>
|
||||||
<#else>
|
<#else>
|
||||||
<#-- This shouldn't happen, but we must provide for it -->
|
<#-- This shouldn't happen, but we must provide for it -->
|
||||||
<a href="${url(statement.authorship)}">${statement.authorshipName}</a> (no linked information resource)
|
<a href="${profileUrl(statement.authorship)}">${statement.authorshipName}</a> (no linked information resource)
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
|
|
|
@ -19,10 +19,10 @@
|
||||||
|
|
||||||
<#local linkedIndividual>
|
<#local linkedIndividual>
|
||||||
<#if statement.org??>
|
<#if statement.org??>
|
||||||
<a href="${url(statement.org)}">${statement.orgName}</a>
|
<a href="${profileUrl(statement.org)}">${statement.orgName}</a>
|
||||||
<#else>
|
<#else>
|
||||||
<#-- This shouldn't happen, but we must provide for it -->
|
<#-- This shouldn't happen, but we must provide for it -->
|
||||||
<a href="${url(statement.edTraining)}">${statement.edTrainingName}</a> (no linked organization)
|
<a href="${profileUrl(statement.edTraining)}">${statement.edTrainingName}</a> (no linked organization)
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
|
|
|
@ -12,10 +12,10 @@
|
||||||
|
|
||||||
<#local linkedIndividual>
|
<#local linkedIndividual>
|
||||||
<#if statement.person??>
|
<#if statement.person??>
|
||||||
<a href="${url(statement.person)}">${statement.personName}</a>
|
<a href="${profileUrl(statement.person)}">${statement.personName}</a>
|
||||||
<#else>
|
<#else>
|
||||||
<#-- This shouldn't happen, but we must provide for it -->
|
<#-- This shouldn't happen, but we must provide for it -->
|
||||||
<a href="${url(statement.authorship)}">${statement.authorshipName}</a> (no linked author)
|
<a href="${profileUrl(statement.authorship)}">${statement.authorshipName}</a> (no linked author)
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
|
|
|
@ -13,10 +13,10 @@
|
||||||
|
|
||||||
<#local linkedIndividual>
|
<#local linkedIndividual>
|
||||||
<#if statement.org??>
|
<#if statement.org??>
|
||||||
<a href="${url(statement.org)}">${statement.orgName}</a>
|
<a href="${profileUrl(statement.org)}">${statement.orgName}</a>
|
||||||
<#else>
|
<#else>
|
||||||
<#-- This shouldn't happen, but we must provide for it -->
|
<#-- This shouldn't happen, but we must provide for it -->
|
||||||
<a href="${url(statement.position)}">${statement.positionName}</a> (no linked organization)
|
<a href="${profileUrl(statement.position)}">${statement.positionName}</a> (no linked organization)
|
||||||
</#if>
|
</#if>
|
||||||
</#local>
|
</#local>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue