%
var that = this;
//var showLocationContext = _.isEmpty(that.locationContext());
%>
<% if (that.options.folder) { %>
Вернуться назад
<% } %>
<% if (!that.collection || that.collection.length === 0) { %>
-
Пока нет файлов.
<% } else { %>
<% that.collection.each(function(m) { %>
<% if (m.get('isFolder')) { %>
<%= that.dataFolderTemplate({folder: m}) %>
<% } else { %>
<%= that.dataFileTemplate({file: m}) %>
<% } %>
<% }); %>
<% } %>