vendor/symfony/twig-bundle/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.                 {% if exception.trace|length %}
  20.                 <pre class="stacktrace">
  21.                 {%- apply escape('html') -%}
  22.                     {{- include('@Twig/Exception/traces.txt.twig', { exception: exception, format: 'html' }, with_context = false) }}
  23.                 {%- endapply -%}
  24.                 </pre>
  25.                 {% endif %}
  26.             </td>
  27.         </tr>
  28.     </tbody>
  29. </table>