diff options
| author | Aurélien Bompard <aurelien@bompard.org> | 2013-11-14 18:27:47 +0100 |
|---|---|---|
| committer | Aurélien Bompard <aurelien@bompard.org> | 2013-11-20 19:15:40 +0100 |
| commit | 54e10ee28d7c72f5614219e92adcc460a3b72a48 (patch) | |
| tree | 07cb7af58e716231d538f749af9f396302c0ffca /hyperkitty/templates/errors/schemaupgrade.html | |
| parent | 89406e71d9541396a48370d48e40f5e6c1e4a357 (diff) | |
| download | hyperkitty-54e10ee28d7c72f5614219e92adcc460a3b72a48.tar.gz hyperkitty-54e10ee28d7c72f5614219e92adcc460a3b72a48.tar.xz hyperkitty-54e10ee28d7c72f5614219e92adcc460a3b72a48.zip | |
KittyStore does not auto-upgrade its schema anymore
Diffstat (limited to 'hyperkitty/templates/errors/schemaupgrade.html')
| -rw-r--r-- | hyperkitty/templates/errors/schemaupgrade.html | 28 |
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 %} |
