readonly_entry_type_image.html

 1   <#if !entry.onlyDisplayInBack>
 2   	<@formGroup labelFor='' labelKey='${entry.title!""}'>
 3   		<#if list_responses?has_content>
 4   			<#assign first=true>
 5   				<#list list_responses as response>
 6   					<#if response.file?exists>
 7   						<a href="jsp/site/plugins/directories/DoDownloadFile.jsp?id_file=${response.file.idFile}&id_response=${response.idResponse}"
 8   							title="${response.file.title} (${response.file.size} O)">
 9   							<img src="jsp/site/plugins/directories/DoDownloadFile.jsp?id_file=${response.file.idFile}&id_response=${response.idResponse}"
 10   								<#if response.entry.displayWidth?? && response.entry.displayWidth!=-1>
 11   							width="${response.entry.displayWidth}"</#if>
 12   					<#if response.entry.displayHeight?? && response.entry.displayHeight!=-1>
 13   						height="${response.entry.displayHeight}" </#if> />
 14   					</a>
 15   		</#if>
 16   		</#list>
 17   </#if>
 18   </@formGroup>
 19   </#if>