X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/366dedf71b3cdd775251c7cea4b1519b44b37164..ee952326340b2251b42db34f4823b0495338be86:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index 5186daa..ca1d7dc 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -49,7 +49,7 @@ class ArtController(BaseController): if c.user: c.your_score = c.art.user_score(c.user) return render("/art/show.mako") - + # TODO: login required def rate(self, id): @@ -59,8 +59,8 @@ class ArtController(BaseController): score = int(score) else: score = Rating.reverse_options.get(score) - + c.art.rate(score, c.user) elixir.session.commit() - + redirect(url('show_art', id=c.art.id))