<?xml version="1.0"?>
<fest:template xmlns:fest="http://fest.mail.ru" context_name="json">
    <h4><fest:value>json.path</fest:value></h4>
    <table class="table table-bordered table-condensed table-counter table-transition">
        <thead>
            <tr>
                <th>#</th>
                <th>File</th>
            </tr>
        </thead>
        <tbody>
            <fest:script>var i = 0;</fest:script>
            <fest:each iterate="json.files" index="i" value="file">
                <tr data-id="{file.id}">
                    <fest:include src="file.xml" context="file"></fest:include>
                </tr>
            </fest:each>
        </tbody>
    </table>
</fest:template>