X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/ef69b26ffcf9185496775bcf73384ea3a5e5691c..b07336c562d537ea3407d6a1c9fcb280dae7f514:/floof/templates/art/show.mako
diff --git a/floof/templates/art/show.mako b/floof/templates/art/show.mako
index 7d54f98..bf14dff 100644
--- a/floof/templates/art/show.mako
+++ b/floof/templates/art/show.mako
@@ -1,5 +1,54 @@
<%inherit file="/base.mako" />
+<%namespace name="comments" file="/comments/lib.mako" />
-
View Art
+<%! from floof.model import Rating %>
-Viewing Art
+
+% if c.user:
+${h.form (h.url("art_tags", art_id=c.art.id))}
+Add Some Tags: ${h.text('tags')}
+${h.submit('submit', 'Tag!')}
+${h.end_form()}
+
+% for tag in c.art.tags:
+${h.form(h.url("art_tag", art_id=c.art.id, id=tag.id), method="delete")}
+${h.submit('delete', 'X')}
+${tag}
+${h.end_form()}
+% endfor
+
+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
+
+Relations
+
+% for label, relations in (('Artist', c.art.artists), \
+ ('Recipient', c.art.recipients), \
+ ('Participant', c.art.participants)):
+% for user in relations:
+- ${label}: ${user.name}
+% endfor
+% endfor
+
+
+Add Relations
+${h.form (h.url("create_relation", kind="by", art_id=c.art.id))}
+By: ${h.text('username')}
+${h.submit('add','Add')}
+${h.end_form()}
+
+
+
+${comments.comment_block(c.art.discussion.comments)}