NIHVIVO-3826 modified displayed values in web form select element
This commit is contained in:
parent
abe34e24ef
commit
a17d90309d
1 changed files with 7 additions and 1 deletions
|
@ -54,7 +54,13 @@
|
||||||
<select name="urlType" style="margin-top:-2px" >
|
<select name="urlType" style="margin-top:-2px" >
|
||||||
<option value="" <#if editMode == "add">selected</#if>>Select one</option>
|
<option value="" <#if editMode == "add">selected</#if>>Select one</option>
|
||||||
<#list urlTypeOpts?keys as key>
|
<#list urlTypeOpts?keys as key>
|
||||||
<option value="${key}" <#if editMode == "edit" && urlTypeValue == key>selected</#if>>${urlTypeOpts[key]}</option>
|
<option value="${key}" <#if editMode == "edit" && urlTypeValue == key>selected</#if> >
|
||||||
|
<#if urlTypeOpts[key] == "F1000 Link">
|
||||||
|
Faculty of 1000 Link
|
||||||
|
<#else>
|
||||||
|
Standard Web Link
|
||||||
|
</#if>
|
||||||
|
</option>
|
||||||
</#list>
|
</#list>
|
||||||
</select>
|
</select>
|
||||||
<label for="url">URL ${requiredHint}</label>
|
<label for="url">URL ${requiredHint}</label>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue