X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/fca6f64bc81a02c61ba45a13de25f3da2e7630b3..HEAD:/floof/templates/art/show.mako?ds=inline diff --git a/floof/templates/art/show.mako b/floof/templates/art/show.mako index cf713dc..e13c295 100644 --- a/floof/templates/art/show.mako +++ b/floof/templates/art/show.mako @@ -1,23 +1,45 @@ <%inherit file="/base.mako" /> <%namespace name="comments" file="/comments/lib.mako" /> -<%! from floof.model.art import Rating %> +<%! 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()} +
+ +
+ +

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,6 +54,4 @@ ${h.submit('score', text)} ${h.end_form()} % endif - - ${comments.comment_block(c.art.discussion.comments)}