phpmyadmin/resources/templates/sql/sql_query_results.twig
Maurício Meneghini Fauth 81104b0146
Refactor the sql/bookmark.twig template
Renames the template to _bookmark.twig to indicate that it's a partial
template. And uses Twig's include function to include the bookmark
template.

Extracts the onsubmit event from the form tag.

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2026-01-17 14:27:57 -03:00

12 lines
320 B
Twig

<div class="sqlqueryresults ajax">
{{ previous_update_query|raw }}
{{ profiling_chart|raw }}
{{ missing_unique_column_message|raw }}
{{ bookmark_created_message|raw }}
{{ table|raw }}
{% if bookmark is not empty %}
{{ include('sql/_bookmark.twig', bookmark, with_context: false) }}
{% endif %}
</div>