blob: f23281b86d2be34a6e3bf5d373e8ac6dc2a139b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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 %}
|