<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()}">
+