table.html.twig 493 B

12345678910111213141516
  1. <table class="{{ class|default('') }}">
  2. <thead>
  3. <tr>
  4. <th scope="col" class="key">{{ labels is defined ? labels[0] : 'Key' }}</th>
  5. <th scope="col">{{ labels is defined ? labels[1] : 'Value' }}</th>
  6. </tr>
  7. </thead>
  8. <tbody>
  9. {% for key in data|keys|sort %}
  10. <tr>
  11. <th scope="row">{{ key }}</th>
  12. <td>{{ profiler_dump(data[key]) }}</td>
  13. </tr>
  14. {% endfor %}
  15. </tbody>
  16. </table>