diff --git a/css/upload.css b/css/upload.css
index 07f608f..4da35f3 100755
--- a/css/upload.css
+++ b/css/upload.css
@@ -18,6 +18,19 @@
background: #71FF71;
}
+#trace_content {
+ text-align: left;
+ font-family: monospace;
+ border: 1px solid white;
+ background-color: #333;
+ color: white;
+ padding: 1em;
+}
+
+.boxtitle {
+ cursor: pointer;
+}
+
.warning {
color: #C22;
}
diff --git a/js/createdb.js b/js/createdb.js
index 485d8f8..afbe2ec 100755
--- a/js/createdb.js
+++ b/js/createdb.js
@@ -109,6 +109,19 @@ function continuous_check(id) {
console.log("Error encountered: " + config.details);
}
// Don't continue!
+ } else if (config.status == "failed") {
+ if (config.details) {
+ console.log("Error encountered: " + config.details);
+ }
+ if (config.trace) {
+ trace_str = config.trace.replaceAll("\n", "
");
+ trace_box = $("