# wt-security/2.4.5/includes/templates/quarantine.html.twig

WebTotem Security, version 2.4.5. 31 lines.

- Page: https://pluginprobe.com/plugins/wt-security/2.4.5/code/includes/templates/quarantine.html.twig
- Raw: https://pluginprobe.com/plugins/wt-security/2.4.5/raw/includes/templates/quarantine.html.twig
- Modified: 2022-05-16T03:52:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wt-security/2.4.5/code/includes/templates/quarantine.html.twig#L10-L20`.

```twig
<div id="wtotem_quarantine_wrap">
    {% if count %}
    <section class="wtotem_antivirus__quarantine wtotem_state wt_card">
        <div class="wtotem_antivirus__quarantine-header">
            <h3 class="h3 wtotem_antivirus__quarantine-title">{{ 'Quarantine'|trans }}</h3>
            <p class="wtotem_antivirus__quarantine-files-count">
                {{ 'Files in quarantine'|trans }} - <span id="quarantine_files_count">{{ count }}</span>
            </p>
        </div>

        <div class="wtotem_file-table">
            <div class="wtotem_file-table__thead">
                <div class="wtotem_file-table__tr">
                    <div class="wtotem_file-table__th">
                        {{ 'File'|trans }}
                    </div>
                    <div class="wtotem_file-table__th">
                        {{ 'Date'|trans }}
                    </div>
                    <div class="wtotem_file-table__th"></div>
                </div>
            </div>
            <div class="wtotem_file-table__tbody"  id="quarantine_logs_wrap">
                {% include 'quarantine_logs.html.twig' with {'logs': logs} %}
            </div>
        </div>
    </section>
    {% endif %}
</div>


```
