{% set active = 'active' if 'database' not in globals() else '' %}
  1. {% if not active %} {% end %} All Databases {% if not active %} {% end %}
  2. {% set active = 'active' if 'schema' not in globals() else '' %} {% if 'database' in globals() %}
  3. Database: {% if not active %} {% end %} {{ database }} {% if not active %} {% end %}
  4. {% end %} {% set active = 'active' if 'table' not in globals() else '' %} {% if 'schema' in globals() %}
  5. Schema: {% if not active %} {% end %} {{ schema }} {% if not active %} {% end %}
  6. {% end %} {% if 'table' in globals() %}
  7. Table: {{ table }}
  8. {% end %}