{% extends "support.html" %} {% block head %} {{ block.super }} {% endblock %} {% block pagehead %} {% include 'pagehead.html' %} {% endblock %} {% block content %}

Search Path

Use before running the query manually:
SET search_path TO {{ search_path }};
Reset after testing:
RESET search_path;

SQL

Set search_path, and Reset search_path included. Reset may not automatically work with interactive psql sessions.
SET search_path TO {{ search_path }};

{{ sql }}

RESET search_path;

EXPLAIN ANALYZE

{{ explain }}
{% block sub-content %}{% endblock %} {% endblock %}