blob: f3e097e5f01ea3f04f523427a67236f304f69d84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "admin/base_site.html" %}
<!-- LOADING -->
{% load i18n %}
<!-- BREADCRUMBS -->
{% block breadcrumbs %}<div id="breadcrumbs"><a href="../../">{% trans 'Home' %}</a> › {{ title }}</div>{% endblock %}
<!-- CONTENT -->
{% block content %}
<p>{% trans "Something's wrong with your database installation. Make sure the appropriate database tables have been created, and make sure the database is readable by the appropriate user." %}</p>
{% endblock %}
|