9 lines
373 B
HTML
9 lines
373 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Error 401{% endblock %}
|
|
|
|
{% block content_title %}You are not authorized to access this functionality!{% endblock %}
|
|
{% block content_description %}You have insufficient permissions to access this functionality!{% endblock %}
|
|
{% block content %}
|
|
<p><a href="{{ url_for('basic_bp.index') }}">Return home</a></p>
|
|
{% endblock %} |