<%inherit file="/base/index.html"/>
Found ${len(c.found_dirs)} directories and ${len(c.found_files)} files containing "${c.needle | h}". %if c.found_dirs != []:

Found Directories

<% i = 0 %> %for dir in c.found_dirs: <%i+=1%> %if i%2 == 0: %endif %endfor
*   ${dir.name} (${len(dir.subdirs)} subdirs, ${len(dir.files)} files.)
%endif %if c.found_files != []:

Found Files

<% i = 0 %> %for file in c.found_files: <%i+=1%> %if i%2 == 0: %endif %endfor
*   ${file.name} (${h.sizeToStr(file.size)})
%endif