blob: 3dce8b521a9733fc17bf8762dd8723c12bcfd41e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{%extends "base.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>
<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%}
|