Make search a GET to /search.
[zzz-floof.git] / floof / templates / art / show.mako
index 7d54f98..d77f364 100644 (file)
@@ -2,4 +2,16 @@
 
 <h1>View Art</h1>
 
-<img src="${c.art.get_path()}"
\ No newline at end of file
+${h.form (h.url_for (controller='art', action='tag', id=c.art.id), multipart=True)}
+Add Some Tags: ${h.text('tags')}
+${h.submit('submit', 'Tag!')}
+${h.end_form()}
+
+% for tag in c.art.tags:
+<a href="${h.url_for (controller='tag', action='delete', id=tag.id)}">x</a> 
+<a href="${h.url_for (controller='search', action='results')}?query=${tag}">${tag}</a>
+% endfor
+
+
+<img class="full" src="${c.art.get_path()}">
+