merged suff, commented out some of my own
[zzz-floof.git] / floof / templates / art / show.mako
index 5895be8..9356447 100644 (file)
@@ -1,7 +1,7 @@
 <%inherit file="/base.mako" />
-<%namespace name="comments" file="/comments.mako" />
+<%namespace name="comments" file="/comments/lib.mako" />
 
-<%! from floof.model.art import Rating %>
+<%! from floof.model import Rating %>
 
 <h1>Viewing Art</h1>
 
@@ -32,6 +32,17 @@ ${h.submit('score', text)}
 ${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.entire_thread(c.art.discussion)}
+${comments.comment_block(c.art.discussion.comments)}