+<h2>What do you think?</h2>
+${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
+
+<h2>Relations</h2>
+<ul>
+% for label, relations in (('Artist', c.art.artists), \
+ ('Recipient', c.art.recipients), \
+ ('Participant', c.art.participants)):
+% for user in relations:
+<li>${label}: ${user.name}
+% endfor
+% endfor
+</ul>