summaryrefslogtreecommitdiffstats
path: root/module/web/setup_app.py
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-09-23 21:04:47 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2012-09-23 21:04:47 +0200
commitf370ef06ad9db2e47edba02b99271137324997cf (patch)
treed432ea10ee77fc9a4165c685eefe9afd1714fcbf /module/web/setup_app.py
parentfixed the dashboard (diff)
downloadpyload-f370ef06ad9db2e47edba02b99271137324997cf.tar.xz
added some animations, code for show/hiding items
Diffstat (limited to 'module/web/setup_app.py')
-rw-r--r--module/web/setup_app.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/module/web/setup_app.py b/module/web/setup_app.py
new file mode 100644
index 000000000..adbd361a7
--- /dev/null
+++ b/module/web/setup_app.py
@@ -0,0 +1,13 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+from bottle import route, request, response, HTTPError
+
+from webinterface import PYLOAD, PROJECT_DIR, SETUP, env
+from utils import render_to_response
+
+
+@route("/setup")
+def setup():
+
+ return render_to_response('setup.html') \ No newline at end of file