X-Git-Url: http://git.veekun.com/zzz-floof.git/blobdiff_plain/3bdc7971c3359efe7f38eb1b94253b416471b87b..c50e600e708d2083290134440223ab65076376ee:/floof/controllers/art.py diff --git a/floof/controllers/art.py b/floof/controllers/art.py index e988c7b..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) @@ -30,7 +30,7 @@ class ArtController(BaseController): 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)