<%inherit file="/base.mako" /> <%namespace name="comments" file="/comments/lib.mako" /> <%! from floof.model import Rating %>

Viewing Art

Tags

% if c.user:

What do you think?

${h.form (h.url("rate_art", id=c.art.id), method="put")} % for score,text in sorted(Rating.options.items()): % if c.your_score == score: ${h.submit('score', text, class_="selected")} % else: ${h.submit('score', text)} % endif % endfor ${h.end_form()} % endif ${comments.comment_block(c.art.discussion.comments)}