Added real registration that prompts for a username.
[zzz-floof.git] / floof / controllers / art.py
index e34543b..8d40321 100644 (file)
@@ -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