vitro/webapp/web/templates/freemarker/ajax/autocompleteResults.ftl

17 lines
365 B
Text
Raw Normal View History

2010-06-21 16:35:00 +00:00
<#-- $This file is distributed under the terms of the license in /doc/license.txt$ -->
<#-- Template for autocomplete results. -->
<#--
<#import "json.ftl" as json>
<@json.array results />
-->
[
<#if results??>
<#list results as result>
{ "label": "${result.label}", "uri": "${result.uri}" }<#if result_has_next>,</#if>
</#list>
</#if>
]