Initial setup for adding support for api key based auth
This commit is contained in:
@@ -81,6 +81,16 @@
|
||||
</a>
|
||||
</header>
|
||||
<main class="flex flex-1 flex-col gap-4 p-4 md:p-6" data-id="50" id="container">
|
||||
{% with messages = get_flashed_messages(with_categories=true) %}
|
||||
{% if messages %}
|
||||
{% for category, message in messages %}
|
||||
<div
|
||||
class="mb-4 p-4 rounded-lg {% if category == 'success' %}bg-green-100 text-green-700{% else %}bg-red-100 text-red-700{% endif %}">
|
||||
{{ message }}
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
{% block page %}
|
||||
{{ render_block(app.jinja_env, "dashboard/http_functions/overview.html", "page",
|
||||
http_functions=http_functions) }}
|
||||
|
||||
Reference in New Issue
Block a user