Fix bug 1262 - Updated requirements to use mysqlclient
[osm/LW-UI.git] / template / forbidden.html
1 {% extends 'base.html' %}
2
3 {% block title_header_big %}
4 {{ block.super }}
5 Error Page
6 {% endblock %}
7
8 {% block content_body %}
9 <div class="error-page">
10 <h2 class="headline text-yellow"> Error 403</h2>
11
12 <div class="error-content">
13 <h3><i class="fa fa-warning text-yellow"></i> {{error_message}}</h3>
14
15 <p>
16 Meanwhile, you may <a href='{% url "home" %}'>return to dashboard</a> .
17 </p>
18
19 </div>
20 <!-- /.error-content -->
21 </div>
22 {% endblock %}
23
24 {% block resource_block %}
25
26 {% endblock %}
27
28