summaryrefslogtreecommitdiffstats
path: root/pyload/web/app/templates/default/setup/error.html
diff options
context:
space:
mode:
authorGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-10-03 19:21:05 +0200
committerGravatar RaNaN <Mast3rRaNaN@hotmail.de> 2013-10-03 19:21:05 +0200
commita8d3e8341eee6af4c778f512d7f8584c476d49fe (patch)
tree777681f695f64488c4aa5e869cf937112077befc /pyload/web/app/templates/default/setup/error.html
parentsmall bug fixes (diff)
downloadpyload-a8d3e8341eee6af4c778f512d7f8584c476d49fe.tar.xz
basically working web setup
Diffstat (limited to 'pyload/web/app/templates/default/setup/error.html')
-rw-r--r--pyload/web/app/templates/default/setup/error.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/pyload/web/app/templates/default/setup/error.html b/pyload/web/app/templates/default/setup/error.html
new file mode 100644
index 000000000..37ce51283
--- /dev/null
+++ b/pyload/web/app/templates/default/setup/error.html
@@ -0,0 +1,14 @@
+{{#ifEq status 410}}
+ <h2 class="text-warning">{{ _ "Setup timed out" }}</h2>
+ <p>{{ _ "Setup was closed due to inactivity. Please restart it to continue configuration." }}</p>
+{{else}}
+{{#ifEq status 409}}
+ <h2 class="text-success">{{ _ "Setup finished" }}</h2>
+ <p>{{ _ "Setup was successful. You can restart pyLoad now." }}</p>
+{{else}}
+ <h2 class="text-error">
+ {{ _ "Setup failed" }}
+ </h2>
+ <p>{{ _ "Try to restart it or open a bug report." }}</p>
+{{/ifEq}}
+{{/ifEq}} \ No newline at end of file