<%inherit file="/base.mako" />
<%namespace name="comments" file="/comments/lib.mako" />
-<%! from floof.model.art import Rating %>
+<%! from floof.model import Rating %>
<h1>Viewing Art</h1>
${h.end_form()}
% endif
-<img class="full" src="${c.art.get_path()}">
+<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>
+
+<img class="full" src="${h.storage_url('art/medium', c.art.hash)}">
${comments.comment_block(c.art.discussion.comments)}