summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/errors/schemaupgrade.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/errors/schemaupgrade.html')
-rw-r--r--hyperkitty/templates/errors/schemaupgrade.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/hyperkitty/templates/errors/schemaupgrade.html b/hyperkitty/templates/errors/schemaupgrade.html
new file mode 100644
index 0000000..f23281b
--- /dev/null
+++ b/hyperkitty/templates/errors/schemaupgrade.html
@@ -0,0 +1,28 @@
+{% extends "base.html" %}
+{% load url from future %}
+
+
+{% block title %}
+Error: the database schema needs an upgrade
+ - {{ app_name|title }}
+{% endblock %}
+
+{% block content %}
+
+<div class="row-fluid">
+
+ <div class="span2">
+ </div>
+
+ <div class="span7">
+ <p class="text-error">
+ The database schema needs to be upgraded. Please refer to
+ <a href="http://hyperkitty.readthedocs.org/en/latest/install.html#upgrading">the documentation</a>
+ to perform this task.
+ </p>
+ <p>When you're done, <a href="{% url 'root' %}">go back</a> to the front page.</p>
+ </div>
+
+</div>
+
+{% endblock %}