X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/f7617496a08f10a77eb909982dae4e995c132900..29dd9f09e93699ac14cd80ea192794ff04cd8f35:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index e34543b..8d40321 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -19,10 +19,20 @@ class ArtController(BaseController): def new(self): """ New Art! """ return render("/art/new.mako") - - + + def upload(self): print "PARAMS", request.params - Art(**request.params) + Art(uploaded_by=c.user, **request.params) elixir.session.commit() redirect_to(controller="main", action="index") + + def show(self, id): + c.art = Art.get(id) + 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