aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/startup_errors.html
blob: 91c1807c5d1a50c395b821b356752e26c17f1bc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "index_page.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%}