X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/3bdc7971c3359efe7f38eb1b94253b416471b87b..2037ab1d9057d34ccf0457e8fb5c7c34b2d89083:/floof/templates/art/show.mako diff --git a/floof/templates/art/show.mako b/floof/templates/art/show.mako index 88e3ec9..262f1cb 100644 --- a/floof/templates/art/show.mako +++ b/floof/templates/art/show.mako @@ -1,16 +1,35 @@ <%inherit file="/base.mako" /> -

View Art

+<%! from floof.model.art import Rating %> -${h.form (h.url_for (controller='art', action='tag', id=c.art.id), multipart=True)} +

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()} % 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')} +${tag} +${h.end_form()} % endfor +

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