init
This commit is contained in:
28
backend/vendor/doctrine/doctrine-bundle/templates/Collector/explain.html.twig
vendored
Normal file
28
backend/vendor/doctrine/doctrine-bundle/templates/Collector/explain.html.twig
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
{% if data[0]|length > 1 %}
|
||||
{# The platform returns a table for the explanation (e.g. MySQL), display all columns #}
|
||||
<table style="margin: 5px 0;">
|
||||
<thead>
|
||||
<tr>
|
||||
{% for label in data[0]|keys %}
|
||||
<th>{{ label }}</th>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for row in data %}
|
||||
<tr>
|
||||
{% for key, item in row %}
|
||||
<td>{{ item|replace({',': ', '}) }}</td>
|
||||
{% endfor %}
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
{% else %}
|
||||
{# The Platform returns a single column for a textual explanation (e.g. PostgreSQL), display all lines #}
|
||||
<pre style="margin: 5px 0;">
|
||||
{%- for row in data -%}
|
||||
{{ row|first }}{{ "\n" }}
|
||||
{%- endfor -%}
|
||||
</pre>
|
||||
{% endif %}
|
||||
Reference in New Issue
Block a user