Files
php-flasher/src/Symfony/Resources/views/profiler/_notifications_table.html.twig
T
2024-10-05 15:34:57 +01:00

31 lines
908 B
Twig

<table class="notifications-table">
<thead>
<tr>
<th>#</th>
<th>Plugin</th>
<th>Type</th>
<th>Title</th>
<th>Message</th>
<th>Options</th>
</tr>
</thead>
<tbody>
{% for envelope in envelopes %}
<tr>
<td>{{ loop.index }}</td>
<td>{{ envelope.metadata.plugin }}</td>
<td class="notification-type-{{ envelope.type|lower }}">{{ envelope.type }}</td>
<td>{{ envelope.title }}</td>
<td>{{ envelope.message }}</td>
<td>
{% if envelope.options is not empty %}
{{ profiler_dump(envelope.options) }}
{% else %}
<em>No Options</em>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>