NIHVIVO-3826 modified displayed values in web form select element

This commit is contained in:
tworrall 2012-06-27 13:31:31 +00:00
parent abe34e24ef
commit a17d90309d

View file

@ -54,7 +54,13 @@
<select name="urlType" style="margin-top:-2px" >
<option value="" <#if editMode == "add">selected</#if>>Select one</option>
<#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>
</select>
<label for="url">URL ${requiredHint}</label>