uploaded by works, and now you can view art on its own page.
[zzz-floof.git] / floof / controllers / art.py
index e34543b..6ce9762 100644 (file)
@@ -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