{# crate_anon/crateweb/research/templates/query_result.html #} {% extends "base.html" %} {% comment %} template parameters: sql_highlight_css: str table_html: str ... and as per query_nav.html page_nav_results.html {% endcomment %} {% block extrahead %} {% endblock %} {% block content %} {% comment %} {% include "query_nav.html" %} {% endcomment %}

Results

{% include "page_nav_results.html" with page=page %} {% include "expand_collapse_buttons.html" %} {{ table_html|safe }} {% include "page_nav_results.html" with page=page %}

SQL

{{ sql|safe }}

Display

{% if query_id is not None %} {# query_id might be None from pe_one_table() #} {# This might be suboptimal; q.v. #}
{% csrf_token %}

Columns included:

Columns excluded:

{% if no_null is True %}

Null columns excluded

{% endif %} {% endif %} {% endblock %} {% block helpurl %}{{ HelpUrl.results }}{% endblock %}