blob: 0dcad7ee0a16dbe8ff7d2736a59098657b72e3c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{% extends "index_page.html" %}
{% block title %}Authentication Needed{% endblock %}
{% block content %}
<div class="container">
<div class="page-header">
<h3>You lack the permissions to view these data.</h3>
</div>
<p>Please contact the data's owner or GN administrators if you believe you should have access to these data.</p>
</div>
{% endblock %}
|