<%inherit file="/base.mako" /> <h1>View Art</h1> ${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()}">