trying out resource routing. Works decently. Added lots of notes.
[zzz-floof.git] / floof / templates / art / show.mako
index 715b9d1..262f1cb 100644 (file)
@@ -5,24 +5,30 @@
 <h1>Viewing Art</h1>
 
 % if c.user:
-${h.form (h.url_for (controller='art', action='tag', id=c.art.id), multipart=True)}
+${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:
-<a href="${url(controller='tag', action='delete', id=tag.id)}">x</a>
+${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()):
-<a href="${h.url_for(controller='art', action='rate', id=c.art.id)}?score=${score}" \
+
 % if c.your_score == score:
-class="selected" \
+${h.submit('score', text, class_="selected")}
+% else:
+${h.submit('score', text)}
 % endif
->${text}</a> 
+
 % endfor
+${h.end_form()}
 % endif
 
 <img class="full" src="${c.art.get_path()}">