blob: 4bdc3803b708501befe3e2d13830e693f6c02cac [file] [log] [blame]
<html>
<body>
<ul>
<#list result?keys as name>
<#assign val = result[name]>
<li>
<#attempt>
${name}: ${val}
<#recover>
${name}:
<#list val as v>
${v}
</#list>
</#attempt>
</li>
</#list>
</ul>
</body>
</html>