aboutsummaryrefslogtreecommitdiff
path: root/android_build/frontend/views.py
diff options
context:
space:
mode:
authorMichael Hudson <michael.hudson@linaro.org>2011-03-07 11:20:07 +1300
committerMichael Hudson <michael.hudson@linaro.org>2011-03-07 11:20:07 +1300
commitc7fee5b59f41d454a3c1cf2a6218fb553a54ac04 (patch)
tree7ad4f8d28a31b7c63d158d20b8d9126c464d9d47 /android_build/frontend/views.py
parent4698f11fcb3882b83385edb99d606698260ab78d (diff)
add delete & build now buttons; make delete button pop up confirmation overlay
Diffstat (limited to 'android_build/frontend/views.py')
-rw-r--r--android_build/frontend/views.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/android_build/frontend/views.py b/android_build/frontend/views.py
index 8b14798..c7493d8 100644
--- a/android_build/frontend/views.py
+++ b/android_build/frontend/views.py
@@ -114,5 +114,7 @@ def api(request, method):
status=200)
except Exception, e:
return HttpResponse("Unknown error:" + str(e), status=500)
+ elif method == "delete":
+ print request.POST
else:
return HttpResponse(status=404)