X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/ef69b26ffcf9185496775bcf73384ea3a5e5691c..c50e600e708d2083290134440223ab65076376ee:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index 6ce9762..8d40321 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -19,8 +19,8 @@ class ArtController(BaseController): def new(self): """ New Art! """ return render("/art/new.mako") - - + + def upload(self): print "PARAMS", request.params Art(uploaded_by=c.user, **request.params) @@ -29,4 +29,10 @@ class ArtController(BaseController): def show(self, id): c.art = Art.get(id) - return render("/art/show.mako") \ No newline at end of file + return render("/art/show.mako") + + 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