X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/efdbb22873232827398ba7605f8b35c605c043e9..d2cfab09f98980d5c1d433a9e75eb65e0b13b0aa:/floof/templates/art/show.mako?ds=inline
diff --git a/floof/templates/art/show.mako b/floof/templates/art/show.mako
index 05d1e42..e13c295 100644
--- a/floof/templates/art/show.mako
+++ b/floof/templates/art/show.mako
@@ -5,19 +5,41 @@
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()}
+
+
+
+
+Tags
+
+
+
+% if c.user:
What do you think?
${h.form (h.url("rate_art", id=c.art.id), method="put")}
% for score,text in sorted(Rating.options.items()):
@@ -32,20 +54,4 @@ ${h.submit('score', text)}
${h.end_form()}
% endif
-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)}