X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/d4609fff2bfd910366c41116f1da35e4037da7d4..cb1976ef371904b45d7961212cd87595a9486284:/floof/templates/art/show.mako
diff --git a/floof/templates/art/show.mako b/floof/templates/art/show.mako
index 2ac5305..45ebcb9 100644
--- a/floof/templates/art/show.mako
+++ b/floof/templates/art/show.mako
@@ -1,27 +1,51 @@
<%inherit file="/base.mako" />
+<%namespace name="comments" file="/comments/lib.mako" />
<%! from floof.model.art import Rating %>
-
View Art
+Viewing Art
-${h.form (h.url_for (controller='art', action='tag', id=c.art.id), multipart=True)}
+% 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:
-x
+${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?
+What do you think?
+${h.form (h.url("rate_art", id=c.art.id), method="put")}
% for score,text in sorted(Rating.options.items()):
-${text}
+
+Relations
+
+% for relation in c.art.user_relations:
+- ${relation.kind}: ${relation.user}
% 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)}