vendor/symfony/symfony/src/Symfony/Bundle/TwigBundle/Resources/views/Exception/traces_text.html.twig line 1

Open in your IDE?
  1. <table class="trace trace-as-text">
  2.     <thead class="trace-head">
  3.         <tr>
  4.             <th class="sf-toggle" data-toggle-selector="#trace-text-{{ index }}" data-toggle-initial="{{ 1 == index ? 'display' }}">
  5.                 <h3 class="trace-class">
  6.                     {% if num_exceptions > 1 %}
  7.                         <span class="text-muted">[{{ num_exceptions - index + 1 }}/{{ num_exceptions }}]</span>
  8.                     {% endif %}
  9.                     {{ exception.class|split('\\')|last }}
  10.                     <span class="icon icon-close">{{ include('@Twig/images/icon-minus-square-o.svg') }}</span>
  11.                     <span class="icon icon-open">{{ include('@Twig/images/icon-plus-square-o.svg') }}</span>
  12.                 </h3>
  13.             </th>
  14.         </tr>
  15.     </thead>
  16.     <tbody id="trace-text-{{ index }}">
  17.         <tr>
  18.             <td>
  19.                 {{ include('@Twig/Exception/traces.txt.twig', { exception: exception }, with_context = false) }}
  20.             </td>
  21.         </tr>
  22.     </tbody>
  23. </table>