displaying galleries on your page works
[zzz-floof.git] / floof / templates / users / view.mako
1 <%inherit file="/base.mako" />
2 <%namespace name="macros" file="/macros.mako" />
3
4 <p>This is the userpage for ${c.this_user.name}.</p>
5
6 % for gallery in c.this_user.galleries:
7 <h2>${gallery.string}</h2>
8 ${macros.thumbs(gallery.search.results)}
9 % endfor