Add working orphaned events template

This commit is contained in:
Mateusz Sip 2018-04-10 01:02:29 +02:00
parent 9a999553a5
commit 089817b9b1
No known key found for this signature in database
GPG Key ID: 0003A7EFA488DBF4

View File

@ -61,7 +61,20 @@
</p>
</div>
{% else %}
{{ helper.render_table(collector.orphanedEvents) }}
<table>
<thead>
<tr>
<th>Event</th>
</tr>
</thead>
<tbody>
{% for event in collector.orphanedEvents %}
<tr>
<td class="font-normal">{{ event }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
</div>
</div>