propel-bundle/Resources/views/Panel/explain.html.twig
William DURAND 6970913db9 Fixed CS
2012-05-24 16:36:46 +02:00

16 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>