16 lines
399 B
HTML
16 lines
399 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Database Setup Required{% endblock %}
|
|
|
|
{% block body %}
|
|
<main class="shell">
|
|
<section class="page-heading stacked-heading">
|
|
<div>
|
|
<h1>Database setup required</h1>
|
|
<p>Configure DATA_SCIENCE_DEV before opening the dashboard.</p>
|
|
</div>
|
|
</section>
|
|
<pre class="setup-error">{{ error }}</pre>
|
|
</main>
|
|
{% endblock %}
|