X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/f7617496a08f10a77eb909982dae4e995c132900..ef69b26ffcf9185496775bcf73384ea3a5e5691c:/floof/controllers/art.py?ds=sidebyside diff --git a/floof/controllers/art.py b/floof/controllers/art.py index e34543b..6ce9762 100644 --- a/floof/controllers/art.py +++ b/floof/controllers/art.py @@ -23,6 +23,10 @@ class ArtController(BaseController): 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") \ No newline at end of file