repo.or.cz
/
phpmyadmin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Translated using Weblate (Korean)
[phpmyadmin.git]
/
templates
/
preview_sql.twig
blob
9219a17a2c385c9e9b47bf308398576d89b6a59e
1
<div class="preview_sql">
2
{% if query_data is empty %}
3
{% trans 'No change' %}
4
{% elseif query_data is iterable %}
5
{% for query in query_data %}
6
{{ Util_formatSql(query) }}
7
{% endfor %}
8
{% else %}
9
{{ Util_formatSql(query_data) }}
10
{% endif %}
11
</div>