Add block list report to show active blocks

This commit is contained in:
Edward Betts 2020-04-22 14:22:33 +01:00
parent 3bbb25226b
commit 95d69ef302
5 changed files with 102 additions and 0 deletions

View file

@ -12,9 +12,16 @@
{% block style %}{% endblock %}
</head>
{% from "navbar.html" import navbar with context %}
{% from "block_alert.html" import local_block_alert, global_block_alert with context %}
<body>
{% block nav %}{{ navbar() }}{% endblock %}
<div class="p-2">
{{ local_block_alert() }}
{{ global_block_alert() }}
</div>
{% block content %}{% endblock %}
<script src="{{ url_for('static', filename='javascript/jquery/jquery.min.js') }}"></script>