aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/startup_errors.html
blob: 82d855722e902bd9080106c41600281844f26189 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{%extends "base.html"%}
{%block title%}Startup Error{%endblock%}
{%block content %}
{%if error_type == "MissingConfigurationError"%}

<div class="container">
  <h1>Startup Error</h1>

  <p>
    The application could not start due to the missing configuration settings
    below:
    <ul>
      {%for setting in error_value.missing%}
      <li class="text-danger"><strong>{{setting}}</strong></li>
      {%endfor%}
    </ul>
  </p>
</div>
{%endif%}
{%endblock%}