X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/ef69b26ffcf9185496775bcf73384ea3a5e5691c..d2cfab09f98980d5c1d433a9e75eb65e0b13b0aa:/floof/templates/art/show.mako?ds=sidebyside diff --git a/floof/templates/art/show.mako b/floof/templates/art/show.mako index 7d54f98..e13c295 100644 --- a/floof/templates/art/show.mako +++ b/floof/templates/art/show.mako @@ -1,5 +1,57 @@ <%inherit file="/base.mako" /> +<%namespace name="comments" file="/comments/lib.mako" /> -

View Art

+<%! from floof.model import Rating %> -Viewing Art + +
+ +
+ +

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()): + +% if c.your_score == score: +${h.submit('score', text, class_="selected")} +% else: +${h.submit('score', text)} +% endif + +% endfor +${h.end_form()} +% endif + +${comments.comment_block(c.art.discussion.comments)}