<%inherit file="/base.mako" /> <%! from floof.model.art import Rating %>

View Art

${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: x ${tag} % endfor What do you think? % for score,text in sorted(Rating.options.items()): ${text} % endfor