Searching for one tag works. Two tags acts like or and returns multiple copies.
[zzz-floof.git] / floof / templates / art / show.mako
1 <%inherit file="/base.mako" />
2
3 <h1>View Art</h1>
4
5 ${h.form (h.url_for (controller='art', action='tag', id=c.art.id), multipart=True)}
6 Add Some Tags: ${h.text('tags')}
7 ${h.submit('submit', 'Tag!')}
8 ${h.end_form()}
9
10 % for tag in c.art.tags:
11 ${tag}
12 % endfor
13
14
15 <img class="full" src="${c.art.get_path()}">
16