invalid_setup.html 464 B

1234567891011121314
  1. {% extends "admin/base_site.html" %}
  2. {% load i18n %}
  3. {% load url from future %}
  4. {% block breadcrumbs %}
  5. <div class="breadcrumbs">
  6. <a href="{% url 'admin:index' %}">{% trans 'Home' %}</a>
  7. &rsaquo; {{ title }}
  8. </div>
  9. {% endblock %}
  10. {% block content %}
  11. <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>
  12. {% endblock %}