NIHVIVO-1839 Modify parameters on editingLinks macro so can pass in hard-coded value for rdfs:label
This commit is contained in:
parent
53ad28c770
commit
dc36eb1a36
2 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@
|
||||||
<#list email.statements as statement>
|
<#list email.statements as statement>
|
||||||
<li role="listitem">
|
<li role="listitem">
|
||||||
<img class ="icon-email middle" src="${urls.images}/individual/emailIcon.gif" alt="email icon" /><a class="email" href="mailto:${statement.value}">${statement.value}</a>
|
<img class ="icon-email middle" src="${urls.images}/individual/emailIcon.gif" alt="email icon" /><a class="email" href="mailto:${statement.value}">${statement.value}</a>
|
||||||
<@p.editingLinks email statement editable />
|
<@p.editingLinks "${email.localName}" statement editable />
|
||||||
</li>
|
</li>
|
||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
<#list phone.statements as statement>
|
<#list phone.statements as statement>
|
||||||
<li role="listitem">
|
<li role="listitem">
|
||||||
<img class ="icon-phone middle" src="${urls.images}/individual/phoneIcon.gif" alt="phone icon" />${statement.value}
|
<img class ="icon-phone middle" src="${urls.images}/individual/phoneIcon.gif" alt="phone icon" />${statement.value}
|
||||||
<@p.editingLinks phone statement editable />
|
<@p.editingLinks "${phone.localName}" statement editable />
|
||||||
</li>
|
</li>
|
||||||
</#list>
|
</#list>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<#list overview.statements as statement>
|
<#list overview.statements as statement>
|
||||||
<p class="individual-overview">
|
<p class="individual-overview">
|
||||||
${statement.value}
|
${statement.value}
|
||||||
<@p.editingLinks overview statement editable />
|
<@p.editingLinks "${overview.localName}" statement editable />
|
||||||
</p>
|
</p>
|
||||||
</#list>
|
</#list>
|
||||||
</#if>
|
</#if>
|
Loading…
Add table
Add a link
Reference in a new issue