propel-bundle/Resources/views/Panel/explain.html.twig
2013-11-01 17:49:56 +00:00

17 lines
297 B
Twig

<h2>Explanation</h2>
<table>
<tr>
{% for label in data[0]|keys %}
<th>{{ label }}</th>
{% endfor %}
</tr>
{% for row in data %}
<tr>
{% for item in row %}
<td>{{ item }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>