{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% import "bootstrap/fixes.html" as fixes %} {% import "bootstrap/utils.html" as util %} {% import "macros.html" as pbw %} {% block title %}Query Catalog{% endblock %} {% block scripts %} {{ super() }} {% if current_user.is_authenticated and current_user.is_admin %} {% endif %} {% endblock %} {% block content %}
{{ util.flashed_messages(dismissible=True, container=False) }}

Query Catalog

Each entry is a query.

{{ pbw.render_query_table(queries) }}
{% include "footer.html" %} {% endblock %}