{% extends "base.html" %} {% block title %}{% if database %}{{ database }}: {% endif %}queries{% endblock %} {% block extra_head %} {{- super() -}} {% endblock %} {% block body_class %}query-list{% if database %} db-{{ database|to_css_class }}{% endif %}{% endblock %} {% block crumbs %} {{ crumbs.nav(request=request, database=database) }} {% endblock %} {% block content %}
| Database | {% endif %}Query | Owner | Flags |
|---|---|---|---|
| {{ query.database }} | {% endif %}
{{ query.title or query.name }}{% if query.private %} 🔒{% endif %}
{% if query.description %} {{ query.description }} {% endif %} |
{% if query.owner_id is not none %}{{ query.owner_id }}{% else %}-{% endif %} | {% if query.is_write %}Writable{% else %}Read-only{% endif %} {% if query.is_private %}Private{% endif %} {% if query.is_trusted %}Trusted{% endif %} |
PrivateOnly the owning actor can view this query.
{% endif %} {% if show_trusted_note %}TrustedExecution skips the usual SQL and write permission checks after view-query allows access.
{% endif %}No queries found.
{% endif %} {% if next_url %} {% endif %}