X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/5fa3452111e4f29afacdec939b31ae7bfe1c5049..55270a42bf0699bd78b95a945fddd73a165507ee:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index 8d40321..7378f7a 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -29,10 +29,18 @@ class ArtController(BaseController): def show(self, id): c.art = Art.get(id) + c.your_score = c.art.user_score(c.user) return render("/art/show.mako") - + + # should force logged in on these things def tag(self, id): art = Art.get(id) art.add_tags(request.params["tags"], c.user) elixir.session.commit() - redirect_to(action="show", id=art.id) \ No newline at end of file + redirect_to(action="show", id=art.id) + + def rate(self, id): + art = Art.get(id) + art.rate(request.params["score"], c.user) + elixir.session.commit() + redirect_to(action="show", id=art.id)