some nice mixins for tags, ratings, relations
[zzz-floof.git] / floof / templates / art / show.mako
index 88e3ec9..05d1e42 100644 (file)
@@ -1,16 +1,51 @@
 <%inherit file="/base.mako" />
+<%namespace name="comments" file="/comments/lib.mako" />
 
-<h1>View Art</h1>
+<%! from floof.model import Rating %>
 
-${h.form (h.url_for (controller='art', action='tag', id=c.art.id), multipart=True)}
+<h1>Viewing Art</h1>
+
+% 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:
-${tag}
+${h.form(h.url("art_tag", art_id=c.art.id, id=tag.id), method="delete")}
+${h.submit('delete', 'X')}
+<a href="${url(controller='search', action='index', query=tag)}">${tag}</a>
+${h.end_form()}
+% endfor
+
+<h2>What do you think?</h2>
+${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
+
+<h2>Relations</h2>
+<ul>
+% for relation in c.art.user_relations:
+<li>${relation.kind}: ${relation.user}
+% endfor
+</ul>
+
+<h2>Add Relations</h2>
+${h.form (h.url("create_relation", kind="by", art_id=c.art.id))}
+By: ${h.text('username')}
+${h.submit('add','Add')}
+${h.end_form()}
 
 
 <img class="full" src="${c.art.get_path()}">
 
+${comments.comment_block(c.art.discussion.comments)}