{% set active = 'active' if database is not defined else '' %}
  1. {% if not active %} {% endif %} All Databases {% if not active %} {% endif %}
  2. {% set active = 'active' if schema is not defined else '' %} {% if database is defined %}
  3. Database: {% if not active %} {% endif %} {{ database }} {% if not active %} {% endif %}
  4. {% endif %} {% set active = 'active' if table is not defined else '' %} {% if schema is defined %}
  5. Schema: {% if not active %} {% endif %} {{ schema }} {% if not active %} {% endif %}
  6. {% endif %} {% if table is defined %}
  7. Table: {{ table }}
  8. {% endif %}