| 1 |
<div id="wtotem_quarantine_wrap"> |
| 2 |
{% if count %} |
| 3 |
<section class="wtotem_antivirus__quarantine wtotem_state wt_card"> |
| 4 |
<div class="wtotem_antivirus__quarantine-header"> |
| 5 |
<h3 class="h3 wtotem_antivirus__quarantine-title">{{ 'Quarantine'|trans }}</h3> |
| 6 |
<p class="wtotem_antivirus__quarantine-files-count"> |
| 7 |
{{ 'Files in quarantine'|trans }} - <span id="quarantine_files_count">{{ count }}</span> |
| 8 |
</p> |
| 9 |
</div> |
| 10 |
|
| 11 |
<div class="wtotem_file-table"> |
| 12 |
<div class="wtotem_file-table__thead"> |
| 13 |
<div class="wtotem_file-table__tr"> |
| 14 |
<div class="wtotem_file-table__th"> |
| 15 |
{{ 'File'|trans }} |
| 16 |
</div> |
| 17 |
<div class="wtotem_file-table__th"> |
| 18 |
{{ 'Date'|trans }} |
| 19 |
</div> |
| 20 |
<div class="wtotem_file-table__th"></div> |
| 21 |
</div> |
| 22 |
</div> |
| 23 |
<div class="wtotem_file-table__tbody" id="quarantine_logs_wrap"> |
| 24 |
{% include 'quarantine_logs.html.twig' with {'logs': logs} %} |
| 25 |
</div> |
| 26 |
</div> |
| 27 |
</section> |
| 28 |
{% endif %} |
| 29 |
</div> |
| 30 |
|
| 31 |
|