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

Viewing Art

% if c.user: ${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 % endif