templates/taggr_dir.html
author terom
Sun, 04 May 2008 18:23:03 +0000
changeset 33 4943047bfcb5
parent 24 001f52cd057e
permissions -rw-r--r--
merged http://pajukanta.fi/temp/degal_exif_r33.tar.bz2 patch from Japsu
% if subdirs :
<ul>
%   for name, path in subdirs :
    <li>
        <a href="#" class="directory_link">${name}</a>
        <div id="${path}" style="display: none" >

        </div>
    </li>
%   endfor                    
</ul>
% endif

<div class="images">
% for i, (id, image, tags) in enumerate(images) :
    <img src="../${image}" onload="image_info(this, ${i}, ${id}, [${",".join(("'%s'" % tag for tag in tags))}])" class="image" id="img_${id}" />
% endfor
</div>