You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<div class="preview_sql"> |
|
{% if query_data is empty %} |
|
{% trans 'No change' %} |
|
{% elseif query_data is iterable %} |
|
{% for query in query_data %} |
|
{{ format_sql(query) }} |
|
{% endfor %} |
|
{% else %} |
|
{{ format_sql(query_data) }} |
|
{% endif %} |
|
</div>
|
|
|