projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Removed trailing spaces.
[zzz-floof.git]
/
floof
/
controllers
/
art.py
diff --git
a/floof/controllers/art.py
b/floof/controllers/art.py
index
8dfc487
..
ca1d7dc
100644
(file)
--- a/
floof/controllers/art.py
+++ b/
floof/controllers/art.py
@@
-49,14
+49,8
@@
class ArtController(BaseController):
if c.user:
c.your_score = c.art.user_score(c.user)
return render("/art/show.mako")
if c.user:
c.your_score = c.art.user_score(c.user)
return render("/art/show.mako")
-
- # # TODO: login required
- # def tag(self, id):
- # # c.art = h.get_object_or_404(Art, id=id)
- # c.art.add_tags(request.params["tags"], c.user)
- # elixir.session.commit()
- # redirect_to('show_art', id=c.art.id)
- #
+
+
# TODO: login required
def rate(self, id):
# c.art = h.get_object_or_404(Art, id=id)
# TODO: login required
def rate(self, id):
# c.art = h.get_object_or_404(Art, id=id)
@@
-65,8
+59,8
@@
class ArtController(BaseController):
score = int(score)
else:
score = Rating.reverse_options.get(score)
score = int(score)
else:
score = Rating.reverse_options.get(score)
-
+
c.art.rate(score, c.user)
elixir.session.commit()
c.art.rate(score, c.user)
elixir.session.commit()
-
+
redirect(url('show_art', id=c.art.id))
redirect(url('show_art', id=c.art.id))