first commit
Change-Id: I8a65ee5527dd16d81e87c8ac5d4bdb471e5e759d
Signed-off-by: lombardof <flombardo@cnit.it>
diff --git a/template/error.html b/template/error.html
new file mode 100644
index 0000000..a55d97b
--- /dev/null
+++ b/template/error.html
@@ -0,0 +1,28 @@
+{% extends 'base.html' %}
+
+{% block title_header_big %}
+ {{ block.super }}
+ Error Page
+{% endblock %}
+
+{% block content_body %}
+<div class="error-page">
+ <h2 class="headline text-yellow"> Error</h2>
+
+ <div class="error-content">
+ <h3><i class="fa fa-warning text-yellow"></i> {{error_message}}</h3>
+
+ <p>
+ Meanwhile, you may <a href='{% url "home" %}'>return to dashboard</a> .
+ </p>
+
+ </div>
+ <!-- /.error-content -->
+ </div>
+{% endblock %}
+
+{% block resource_block %}
+
+{% endblock %}
+
+