projects
/
zzz-floof.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
merged in my branch 'resources', which is not aptly named anymore since it no longer...
[zzz-floof.git]
/
floof
/
controllers
/
tag.py
diff --git
a/floof/controllers/tag.py
b/floof/controllers/tag.py
index
ef3c7ce
..
874e605
100644
(file)
--- a/
floof/controllers/tag.py
+++ b/
floof/controllers/tag.py
@@
-18,12
+18,12
@@
class TagController(BaseController):
tag = h.get_object_or_404(Tag, id=id)
elixir.session.delete(tag)
elixir.session.commit()
tag = h.get_object_or_404(Tag, id=id)
elixir.session.delete(tag)
elixir.session.commit()
- redirect(url('art', id=art_id))
+ redirect(url('
show_
art', id=art_id))
# TODO: login required
def create(self, art_id):
c.art = h.get_object_or_404(Art, id=art_id)
# TODO: login required
def create(self, art_id):
c.art = h.get_object_or_404(Art, id=art_id)
- c.art.add_tags(request.params
["tags"]
, c.user)
+ c.art.add_tags(request.params
.get("tags","")
, c.user)
elixir.session.commit()
elixir.session.commit()
- redirect(url('art', id=c.art.id))
+ redirect(url('
show_
art', id=c.art.id))