<?xml version="1.0"?>
<fest:template xmlns:fest="http://fest.mail.ru" context_name="json">
    <td></td>
    <td>
        <fest:choose>
            <fest:when test="json.type == 'directory'">
                <i class="icon-folder-close"></i>
            </fest:when>
            <fest:when test="json.type == 'file'">
                <i class="icon-file"></i>
            </fest:when>
            <fest:otherwise>
                <i class="icon-folder-leaf"></i>
            </fest:otherwise>
        </fest:choose>
        <fest:space/>
        <fest:value>json.filename</fest:value>
    </td>
</fest:template>