d0863325a5
But for real, it's a real shitstorm in there. - Added context by making the init go through a function and not implicitly happen via imports - Fixup all context and contextless function mixups - splitup the models in sensible different files - give the dump of view functions in views/__init__.py their own file - add all routes via blueprints, not half of them - move the slack notifications function and class to its own file, no idea what it was doing in a views file in the first place.
9 lines
No EOL
274 B
HTML
9 lines
No EOL
274 B
HTML
{% extends "layout.html" -%}
|
|
|
|
{% block container %}
|
|
<div class="jumbotron">
|
|
<h1>Unauthorized</h1>
|
|
<p>You're not authorized to look to this page!</p>
|
|
<p><a href="{{ url_for('general_bp.home') }}">Go somewhere nice</a></p>
|
|
</div>
|
|
{% endblock %} |