aboutsummaryrefslogtreecommitdiff
path: root/gn2/wqflask/templates/authorisation_error.html
blob: 36646fba106d0e8933e440a45f7a07f0748c6918 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "index_page.html" %}
{%block title%}{{error_type}}: ...{%endblock%}
{%block content%}
<div class="container">
  <div class="page-header">
    <h3>Access Error: {{error_type}}</h3>
  </div>
  <p>
  <span class="glyphicon glyphicon-exclamation-sign text-danger"></span>
  <strong>{{error_type}}:</strong>&nbsp;
  <small class="text-danger">{{error.description}}</small>
  </p>
  <p>
    Please contact the data's owner or GN administrators if you believe you
    should have access to these data.
  </p>
</div>

{%endblock%}